Update .vimrc and .bashrc

This commit is contained in:
2024-03-23 11:58:46 +01:00
parent 3ddef434e5
commit c2661a3e2b
2 changed files with 5 additions and 5 deletions

7
.vimrc
View File

@ -26,13 +26,14 @@ set grepprg=grep\ -nH\ $*
" PLUGINS ---------------------------------------------------------------- {{{
let g:ale_linters = {'python': ['pylint'], 'c': ['cc'], 'sh': ['shell']}
let g:ale_linters_explicit = 1
let g:ale_linters={'python': ['pylint'], 'c': ['cc'], 'sh': ['shell'], 'tex': ['lacheck'], 'haskell': ['ghc']}
let g:ale_linters_explicit=1
let g:ale_enabled=0
let g:ale_python_pylint_options='--max-line-length=160 --disable=missing-docstring --disable=invalid-name'
let g:everforest_background='hard'
let g:everforest_better_performance=1
let g:rainbow_active=1
let g:tex_flavor = 'latex'
let g:tex_flavor='latex'
" }}}