Compare commits

...

5 commits

Author SHA1 Message Date
d3c18bc1c0 add nerd commenter plugin 2023-02-20 12:11:33 -06:00
b7a835dbec fix whitespace 2023-02-20 11:10:00 -06:00
422a77a13b add ccat alias to cat file without comments 2023-02-20 11:04:35 -06:00
b964d6a3ff Revert "add ccat alias"
This reverts commit 99474e6792.

Accidentally committed unwanted changes.
2023-02-20 10:50:35 -06:00
99474e6792 add ccat alias 2023-02-20 10:40:35 -06:00
2 changed files with 3 additions and 0 deletions

View file

@ -14,6 +14,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
call plug#begin()
Plug 'fatih/vim-go'
Plug 'bronson/vim-trailing-whitespace'
Plug 'preservim/nerdcommenter'
call plug#end()
"""
@ -57,6 +58,7 @@ set ruler
set showmatch
set smarttab
set ts=2 sw=2 sts=2 expandtab
let g:NERDSpaceDelims=1
let mapleader=","
if has("autocmd")

View file

@ -15,6 +15,7 @@ alias sshpass="ssh -o PubkeyAuthentication=no"
alias scppass="scp -o PubkeyAuthentication=no"
alias k="kubectl"
alias ll="ls -la"
alias ccat='egrep -v "^\s*(#|$)"'
# Import local prefs from ~/.zshlocal, if present
if [ -f $HOME/.zshlocal ]; then