mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-22 11:44:10 -05:00
Removed '.' from iskeyword for files of type 'sh'
This commit is contained in:
parent
80ef3923fd
commit
5d7a4b56c2
1 changed files with 2 additions and 1 deletions
|
@ -29,13 +29,14 @@ endif
|
||||||
|
|
||||||
"FILETPE AND SYNTAX: {{{
|
"FILETPE AND SYNTAX: {{{
|
||||||
"misc filtype specific settings
|
"misc filtype specific settings
|
||||||
|
autocmd FileType sh setlocal iskeyword-=.
|
||||||
autocmd FileType gitcommit,notes,mail,notmuch,mkd,text setlocal nonumber spell nolist wrap linebreak breakat&vim "some defautls for word processing
|
autocmd FileType gitcommit,notes,mail,notmuch,mkd,text setlocal nonumber spell nolist wrap linebreak breakat&vim "some defautls for word processing
|
||||||
autocmd Filetype mkd setlocal breakat-=* "prevent breaking *s from words to linewrap in markdown
|
autocmd Filetype mkd setlocal breakat-=* "prevent breaking *s from words to linewrap in markdown
|
||||||
autocmd FileType help* wincmd L "help windows always open vertically
|
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* vertical resize 80 "set the window size to 80 cols
|
||||||
autocmd FileType help* setlocal nocursorline "remove the horizontal cursor line
|
autocmd FileType help* setlocal nocursorline "remove the horizontal cursor line
|
||||||
autocmd BufEnter,FileType qf,help* setlocal nowrap nocursorcolumn "disable text wrapping and the vertical cursor line
|
autocmd BufEnter,FileType qf,help* setlocal nowrap nocursorcolumn "disable text wrapping and the vertical cursor line
|
||||||
autocmd BufEnter,FileType extradite setlocal number
|
autocmd BufEnter,FileType extradite setlocal number "enable line numbers in extradite
|
||||||
|
|
||||||
"settings for buffers in diff mode
|
"settings for buffers in diff mode
|
||||||
autocmd VimEnter,FilterWritePre * if &diff|setlocal nofoldenable|endif
|
autocmd VimEnter,FilterWritePre * if &diff|setlocal nofoldenable|endif
|
||||||
|
|
Loading…
Reference in a new issue