From 1879706f3a0a3050e40a658b9a7c4887a75aaaff Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 29 Jun 2014 20:56:13 -0400 Subject: [PATCH] Added the $ character to become part of a word in the sh filetype --- vim/config/after.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/config/after.vim b/vim/config/after.vim index 4a9214e..e6da993 100644 --- a/vim/config/after.vim +++ b/vim/config/after.vim @@ -33,6 +33,7 @@ endif autocmd FileType notes,mail,notmuch,mkd,text setlocal nonumber autocmd FileType mail,notmuch,text setlocal wrap autocmd FileType notes setlocal tw=80 + autocmd FileType sh setlocal iskeyword+=$ autocmd FileType help* wincmd L "help windows always open vertically autocmd FileType help* vertical resize 80 "set the window size to 80 cols autocmd FileType help* setlocal nocursorline "remove the horizontal cursor line