Update .vimrc and .bashrc

This commit is contained in:
daniele 2024-03-09 22:32:31 +01:00
parent 1ecafc120e
commit 20f74f3cf3
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 1 additions and 9 deletions

View File

@ -17,7 +17,6 @@ alias ls='ls -v --color=auto'
alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null'
alias ncmpcpp='systemctl --user start mpd-mpris; ncmpcpp; systemctl --user stop mpd-mpris'
alias rm='rm -I'
alias set-monitor='xrandr --output HDMI-1-0 --auto --left-of eDP-1 --set "PRIME Synchronization" 1 --output eDP-1 --primary'
alias sort='sort -n'
alias ssh='ssh -X'
alias sudo='sudo '
@ -37,4 +36,4 @@ eval "$(beet completion)"
export EDITOR=vim
export SUDO_EDITOR=rvim
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh"
fortune /usr/share/fortune/startrek /usr/share/fortune/anarchism /usr/share/fortune/asoiaf

7
.vimrc
View File

@ -25,13 +25,6 @@ set background=dark
" PLUGINS ---------------------------------------------------------------- {{{
call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
Plug 'dense-analysis/ale'
call plug#end()
let g:ale_linters = {'python': ['pylint'], 'c': ['cc'], 'sh': ['shell']}
let g:ale_linters_explicit = 1
let g:ale_python_pylint_options='--max-line-length=160 --disable=missing-docstring --disable=invalid-name'