mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-24 04:21:26 -05:00
Compare commits
No commits in common. "facbd155231f6ed033ca1aebfa1aca5e1c47664a" and "42138932e95ecad5b2e2b43cda657a4f057a013f" have entirely different histories.
facbd15523
...
42138932e9
4 changed files with 8 additions and 12 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 46714d1bed484be0d5ac7d1b078ad4be0f1a7efa
|
Subproject commit 6eeaf0f3968ea1e6f135a5ee5aa01828f66611a5
|
|
@ -1 +1 @@
|
||||||
Subproject commit 488bec03254207b1dd071be8cb1fb78434b6e777
|
Subproject commit 57205313dda0ac82ac69e21d5e2a80f3297c14cc
|
|
@ -1 +1 @@
|
||||||
Subproject commit ecf8c8890d95991959606c6c8ab69b377c84ea90
|
Subproject commit f363d911ed2c865b8883a42613ca529cf7a6d006
|
|
@ -27,7 +27,7 @@ autocmd FileChangedRO * nested set noreadonly
|
||||||
autocmd BufEnter * :syntax sync fromstart
|
autocmd BufEnter * :syntax sync fromstart
|
||||||
|
|
||||||
"disable automatic line breaks
|
"disable automatic line breaks
|
||||||
set textwidth=0
|
autocmd VimEnter * set textwidth=0
|
||||||
|
|
||||||
"set filetypes for various file extensions
|
"set filetypes for various file extensions
|
||||||
autocmd BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setlocal ft=aspnet
|
autocmd BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setlocal ft=aspnet
|
||||||
|
@ -37,15 +37,11 @@ autocmd FileChangedRO * nested set noreadonly
|
||||||
autocmd BufNewFile,BufRead *.neomuttrc setlocal ft=neomuttrc
|
autocmd BufNewFile,BufRead *.neomuttrc setlocal ft=neomuttrc
|
||||||
autocmd BufNewFile,BufRead *pacman.conf setlocal ft=conf
|
autocmd BufNewFile,BufRead *pacman.conf setlocal ft=conf
|
||||||
|
|
||||||
"word processing
|
"filtype specific settings
|
||||||
autocmd Filetype markdown,text,gitcommit,mail setlocal nonumber spell tabstop=2 shiftwidth=2 "defaults
|
|
||||||
autocmd Filetype text,gitcommit,mail setlocal wrap nolist textwidth=80 linebreak breakat&vim breakat-=* breakat-=. breakat-=/ breakat-=? breakat-=, breakat-=: breakat-=; breakat-=! "text wrapping
|
|
||||||
|
|
||||||
"comment string
|
|
||||||
autocmd FileType tmux setlocal commentstring=#\ %s
|
|
||||||
|
|
||||||
"iskeyword
|
|
||||||
autocmd BufEnter,FileType sh setlocal iskeyword-=.
|
autocmd BufEnter,FileType sh setlocal iskeyword-=.
|
||||||
|
autocmd Filetype text,markdown,gitcommit,mail setlocal nonumber spell nolist linebreak textwidth=80 tabstop=2 shiftwidth=2 breakat&vim breakat-=* breakat-=. breakat-=/ breakat-=? breakat-=, breakat-=: breakat-=; breakat-=! "set some defaults for word processing
|
||||||
|
autocmd Filetype text,gitcommit,mail setlocal wrap
|
||||||
|
autocmd FileType tmux setlocal commentstring=#\ %s "set the comment string to #
|
||||||
autocmd FileType scss setlocal iskeyword+=$
|
autocmd FileType scss setlocal iskeyword+=$
|
||||||
autocmd Filetype markdown setlocal iskeyword+=-
|
autocmd Filetype markdown setlocal iskeyword+=-
|
||||||
autocmd FileType javascript setlocal iskeyword+=- iskeyword+=.
|
autocmd FileType javascript setlocal iskeyword+=- iskeyword+=.
|
||||||
|
|
Loading…
Reference in a new issue