From a94eab1f9d630b26efd640f3f6c4d73d8904bfe7 Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Sun, 29 Sep 2019 19:21:43 -0600 Subject: [PATCH] Various updates to config: Vundle, LatexFormatting, xinitrc commented, console font decreased --- vim/file_formatting.vim | 2 +- vim/vundle.vim | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/vim/file_formatting.vim b/vim/file_formatting.vim index 030ab57..43544ae 100644 --- a/vim/file_formatting.vim +++ b/vim/file_formatting.vim @@ -12,7 +12,7 @@ augroup filetype_specific_formatting autocmd FileType sh setlocal tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab foldmethod=indent foldlevel=99 autocmd FileType lisp setlocal tabstop=2 softtabstop=2 shiftwidth=2 expandtab foldmethod=manual foldlevel=99 autocmd FileType markdown setlocal tabstop=2 noexpandtab foldmethod=indent foldlevel=99 spell - autocmd FileType tex setlocal tabstop=2 noexpandtab foldmethod=indent foldlevel=99 spell + autocmd FileType tex setlocal noexpandtab foldmethod=indent foldlevel=99 spell augroup end " }}} diff --git a/vim/vundle.vim b/vim/vundle.vim index 194668c..4994229 100644 --- a/vim/vundle.vim +++ b/vim/vundle.vim @@ -71,6 +71,10 @@ let g:ale_linters = { \ 'cs' : ['OmniSharp'] \} let g:ale_lint_on_text_changed = 'never' +let g:ale_lint_on_insert_leave = 'never' + +nnoremap ae :ALENext +nnoremap ar :ALEPrevious " --- command t --- nnoremap T :CommandT