Update .vimrc and .bashrc

This commit is contained in:
daniele 2024-03-23 11:58:46 +01:00
parent 3ddef434e5
commit c2661a3e2b
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 5 additions and 5 deletions

View File

@ -18,12 +18,11 @@ alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null'
alias ncmpcpp='systemctl --user start mpd-mpris; ncmpcpp; systemctl --user stop mpd-mpris' alias ncmpcpp='systemctl --user start mpd-mpris; ncmpcpp; systemctl --user stop mpd-mpris'
alias rm='rm -I' alias rm='rm -I'
alias sort='sort -n' alias sort='sort -n'
alias ssh='ssh -X'
alias sudo='sudo ' alias sudo='sudo '
alias vi='vim' alias vi='vim'
if [ "$TERM" == "xterm-kitty" ]; then if [ "$TERM" == "xterm-kitty" ]; then
alias ssh='kitty +kitten ssh' alias ssh='kitten ssh'
fi fi
# PS1 # PS1

7
.vimrc
View File

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