add plugin vimux, add f10 shortcut

edit alias drma as docker container prune
This commit is contained in:
TheK4n 2022-01-06 23:12:45 +03:00
parent 08f9a4afa8
commit 665e3f782f
2 changed files with 5 additions and 1 deletions

View File

@ -85,7 +85,8 @@ alias vd='deactivate'
# docker
alias drma='docker rm $(docker ps -a -q -f status=exited)'
#alias drma='docker rm $(docker ps -a -q -f status=exited)'
alias drma='docker container prune'
# python
alias pipir='python3 -m pip install -r requirements.txt'

View File

@ -92,6 +92,7 @@ call vundle#begin()
Plugin 'ap/vim-css-color'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'preservim/tagbar'
Plugin 'preservim/vimux'
call vundle#end()
@ -100,6 +101,8 @@ filetype plugin indent on
" Python
let python_highlight_all = 1
set t_Co=256
nnoremap <silent> <special> <F10> :!python3 % <CR>
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class,match,case