diff --git a/tmux/clocks.sh b/tmux/clocks.sh index 1d7bbba..f0effda 100755 --- a/tmux/clocks.sh +++ b/tmux/clocks.sh @@ -13,4 +13,4 @@ buffForm="#[fg=green]<][ $buffTime ][> " utcForm="#[fg=blue][ $utcTime ][> " bangForm="#[fg=magenta][ $bangTime ][>>" -echo $caliForm$buffForm$utcForm$bangForm" " +echo "$caliForm""$buffForm""$utcForm""$bangForm"" " diff --git a/vim/vimrc-plugins b/vim/vimrc-plugins index 28e821c..319f1b7 100644 --- a/vim/vimrc-plugins +++ b/vim/vimrc-plugins @@ -31,10 +31,15 @@ call plug#begin('~/.vim/bundle') Plug 'tpope/vim-fugitive' Plug 'tpope/vim-vinegar' Plug 'bling/vim-airline' -Plug 'justinmk/vim-sneak' -Plug 'ap/vim-templates' +" Plug 'justinmk/vim-sneak' +" Plug 'ap/vim-templates' Plug 'vimwiki/vimwiki' Plug 'mhinz/vim-startify' +Plug 'tpope/vim-tbone' +Plug 'tpope/vim-surround' + +" Syntax Related +Plug 'scrooloose/syntastic' call plug#end() @@ -50,3 +55,10 @@ let g:airline_powerline_fonts = 1 let g:startify_files_number = 5 let g:startify_change_to_dir = 1 +" Syntastic configs +let g:syntastic_always_populate_loc_list = 1 +let g:syntastic_auto_loc_list = 1 +let g:syntastic_check_on_open = 1 +let g:syntastic_check_on_wq = 1 + +let g:syntastic_sh_checkers = [ 'shellcheck', 'sh' ]