Various updates to config: Vundle, LatexFormatting, xinitrc commented, console font decreased

This commit is contained in:
Wryn Wagner 2019-09-29 19:21:43 -06:00
parent 41f4939c94
commit a94eab1f9d
2 changed files with 5 additions and 1 deletions

View File

@ -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
" }}}

View File

@ -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 <Leader>ae :ALENext<cr>
nnoremap <Leader>ar :ALEPrevious<cr>
" --- command t ---
nnoremap T :CommandT<cr>