Added a figlet comment header of the files name to the top of each file

This commit is contained in:
Russell R. 2020-09-25 20:23:17 -04:00
parent 488d1fc872
commit 83eaec38a8
4 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,11 @@
# _ _ _ _
# | |__ __ _ ___| |__ __ _| (_) __ _ ___ ___ ___
# | '_ \ / _` / __| '_ \ / _` | | |/ _` / __|/ _ \/ __|
# _| |_) | (_| \__ \ | | | | (_| | | | (_| \__ \ __/\__ \
# (_)_.__/ \__,_|___/_| |_|___\__,_|_|_|\__,_|___/\___||___/
# |_____|
# some more ls aliases # some more ls aliases
alias ll='ls -alF' alias ll='ls -alF'
alias la='ls -A' alias la='ls -A'

View File

@ -1,7 +1,16 @@
# _ _
# | | | |
# | |__ __ _ ___| |__ _ __ ___
# | '_ \ / _` / __| '_ \| '__/ __|
# _| |_) | (_| \__ \ | | | | | (__
# (_)_.__/ \__,_|___/_| |_|_| \___|
# ~/.bashrc: executed by bash(1) for non-login shells. # ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples # for examples
# If not running interactively, don't do anything # If not running interactively, don't do anything
case $- in case $- in
*i*) ;; *i*) ;;

View File

@ -1,3 +1,11 @@
# __ _ _
# _ __ _ __ ___ / _(_) | ___
# | '_ \| '__/ _ \| |_| | |/ _ \
# _| |_) | | | (_) | _| | | __/
# (_) .__/|_| \___/|_| |_|_|\___|
# |_|
# ~/.profile: executed by the command interpreter for login shells. # ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists. # exists.

View File

@ -1,3 +1,9 @@
" _ _ __ _
" (_)___ (_) /__ __(_)___ ___
" / / __ \/ / __/ | / / / __ `__ \
" / / / / / / /__| |/ / / / / / / /
" /_/_/ /_/_/\__(_)___/_/_/ /_/ /_/
"
" ************************************************************* " *************************************************************
" my neovim init.vim config file " my neovim init.vim config file
" Russell R. Riker (aka: Dr. WaSaBi) " Russell R. Riker (aka: Dr. WaSaBi)
@ -18,8 +24,10 @@ autocmd FileType tex,latex,markdown setlocal spell spelllang=en_us
" copy to the system clipboard " copy to the system clipboard
set clipboard+=unnamedplus set clipboard+=unnamedplus
" set the vimwiki folder path and file type
let g:vimwiki_list = [{'path': '~/vimwiki/', let g:vimwiki_list = [{'path': '~/vimwiki/',
\ 'syntax': 'markdown', 'ext': '.md'}] \ 'syntax': 'markdown', 'ext': '.md'}]
" *********************************************************** " ***********************************************************
" ********************* install pluggins ******************** " ********************* install pluggins ********************
" *********************************************************** " ***********************************************************