From c4202e4821cf0556167d979d937ae81dfce83e6e Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 6 Mar 2024 16:28:24 -0500 Subject: [PATCH] Don't rotate vimdiff panes, and move the vim_json_syntax_conceal to a config file attached to the plugin it affects --- vim/config/after.vim | 6 +----- vim/config/plugins/vim-polyglot-darkcloud.vim | 2 ++ 2 files changed, 3 insertions(+), 5 deletions(-) create mode 100644 vim/config/plugins/vim-polyglot-darkcloud.vim diff --git a/vim/config/after.vim b/vim/config/after.vim index 34e4afa..7b79099 100644 --- a/vim/config/after.vim +++ b/vim/config/after.vim @@ -26,13 +26,10 @@ autocmd FileChangedRO * nested set noreadonly "enable more accurate syntax synchronization autocmd BufEnter * :syntax sync fromstart - "don't conceal json syntax - let g:vim_json_syntax_conceal = 0 - "disable automatic line breaks autocmd VimEnter * set textwidth=0 - "set given filenames to various filetypes + "set filetypes for various file extensions autocmd BufNewFile,BufRead *.aspx,*.asmx,*.ascx,*.master setlocal ft=aspnet autocmd BufNewFile,BufRead *.gradle setlocal ft=groovy autocmd BufNewFile,BufRead *eslintrc setlocal ft=json @@ -58,7 +55,6 @@ autocmd FileChangedRO * nested set noreadonly "settings for buffers in diff mode autocmd VimEnter,FilterWritePre * if &diff|setlocal nofoldenable|endif - autocmd VimEnter * if &diff|wincmd H|endif "disable the whitespace plugin for mail autocmd BufEnter,FileType mail hi ExtraWhitespace ctermbg=NONE guibg=NONE diff --git a/vim/config/plugins/vim-polyglot-darkcloud.vim b/vim/config/plugins/vim-polyglot-darkcloud.vim new file mode 100644 index 0000000..be4e1c0 --- /dev/null +++ b/vim/config/plugins/vim-polyglot-darkcloud.vim @@ -0,0 +1,2 @@ +"don't conceal json syntax +let g:vim_json_syntax_conceal = 0