add winresizer Plugin to vimrc

This commit is contained in:
Jidbo 2018-11-21 15:44:26 +01:00
parent 9fe59e32fc
commit ceb5dc6a59

20
.vimrc
View file

@ -1,3 +1,9 @@
" if empty(glob("~/.vim/bundle/Vundle.vim"))
" silent !git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
" autocmd GUIEnter * PluginInstall
" \ source ~/.vimrc
" endif
set nocompatible " required set nocompatible " required
filetype off " required filetype off " required
@ -23,8 +29,8 @@ Plugin 'vim-syntastic/syntastic'
" pep8 checking " pep8 checking
Plugin 'nvie/vim-flake8' Plugin 'nvie/vim-flake8'
" autocomplete " winresizer
" Bundle 'Valloric/YouCompleteMe' Plugin 'simeji/winresizer'
" search for files " search for files
Plugin 'ctrlpvim/ctrlp.vim' Plugin 'ctrlpvim/ctrlp.vim'
@ -107,22 +113,20 @@ set foldlevel=99
" remap code folding " remap code folding
nnoremap <leader>f za nnoremap <leader>f za
" see docstrings for folded code
let g:SimpylFold_docstring_preview=1
" html css js indents " html css js indents
au BufNewFile,BufRead *.js, *.html, *.css au BufNewFile,BufRead *.js, *.html, *.css
\ set tabstop=4 | \ set tabstop=4 |
\ set softtabstop=4 | \ set softtabstop=4 |
\ set shiftwidth=4 \ set shiftwidth=4
" you complete me setup " PLUGIN SETTINGS
let g:ycm_autoclose_preview_window_after_completion=1
map <leader>g :YcmCompleter GoToDefinitionElseDeclaration<CR>
" nerd tree setup " nerd tree setup
let NERDTreeIgnore=['\.pyc$', '\~$'] "ignore files in NERDTree let NERDTreeIgnore=['\.pyc$', '\~$'] "ignore files in NERDTree
map <leader>n :NERDTreeToggle<CR> map <leader>n :NERDTreeToggle<CR>
" see docstrings for folded code
let g:SimpylFold_docstring_preview=1
" airline tabs " airline tabs
let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#formatter = 'unique_tail_improved' let g:airline#extensions#tabline#formatter = 'unique_tail_improved'