vimrc sshconfig and gpaw module

This commit is contained in:
2021-06-28 10:41:42 +02:00
parent b86e7df6f7
commit e698ad9319
3 changed files with 14 additions and 0 deletions

9
.vimrc
View File

@@ -28,6 +28,7 @@ if filereadable(expand(vundle_dir) . "/README.md")
Plugin 'nvie/vim-flake8'
Plugin 'ludovicchabant/vim-gutentags'
Plugin 'junegunn/vim-peekaboo'
Plugin 'ycm-core/YouCompleteMe'
call vundle#end() " required
else
@@ -193,6 +194,11 @@ else
endif
" YouCompleteMe Python interpreter
let g:ycm_python_interpreter_path = '~/.python-venv.kuba/bin/python'
"let g:ycm_autoclose_preview_window_after_insertion = 1 " Close after leaving insert mode
let g:ycm_autoclose_preview_window_after_completion = 1 " Close after accepting completion
" fugitive.vim looks for tags in .git
" set tags +=~/tags " Recursively move upwards in tree, searching in subfolders for tags file
@@ -215,6 +221,9 @@ set statusline+=%#MoreMsg#
set statusline+=\ "
" flake8
let g:flake8_show_in_gutter=1
" CtrlP
let g:ctrlp_working_path_mode = 'ra'