add more submodules vim-plugins
This commit is contained in:
parent
5e0c53c7f0
commit
26f96a9ca3
2 changed files with 10 additions and 2 deletions
|
@ -5,10 +5,12 @@ install plugins https://github.com/preservim/nerdtree.git
|
|||
install plugins https://github.com/Xuyuanp/nerdtree-git-plugin.git
|
||||
install plugins https://github.com/jistr/vim-nerdtree-tabs.git
|
||||
install plugins https://github.com/tpope/vim-fugitive.git
|
||||
remove plugins https://github.com/Lokaltog/powerline.git
|
||||
install plugins https://github.com/rakr/vim-togglebg.git
|
||||
install plugins https://github.com/ConradIrwin/vim-bracketed-paste.git
|
||||
install plugins https://github.com/tmhedberg/SimpylFold.git
|
||||
install plugins https://github.com/vim-syntastic/syntastic.git
|
||||
install plugins https://github.com/ctrlpvim/ctrlp.vim.git
|
||||
install plugins https://github.com/vim-airline/vim-airline.git
|
||||
install plugins https://github.com/vim-airline/vim-airline-themes.git
|
||||
install plugins https://github.com/junegunn/fzf.vim.git
|
||||
remove plugins https://github.com/Lokaltog/powerline.git
|
||||
|
|
8
vimrc
8
vimrc
|
@ -9,7 +9,6 @@
|
|||
set nocompatible " required
|
||||
filetype off " required
|
||||
|
||||
let g:NERDTreeDirArrows = 1
|
||||
|
||||
"if !empty($MYSHELLCONFIG_VIM_PLUGINS)
|
||||
" let pluginrepopath=$MYSHELLCONFIG_VIM_PLUGINS . '/'
|
||||
|
@ -416,6 +415,7 @@ command W :execute ':silent w !sudo tee % > /dev/null' | :edit!
|
|||
let python_highlight_all=1
|
||||
syntax on
|
||||
|
||||
let g:NERDTreeDirArrows = 1
|
||||
let NERDTreeIgnore=['\.pyc$', '\~$'] "ignore files in NERDTree
|
||||
|
||||
|
||||
|
@ -512,3 +512,9 @@ noremap <C-S-Tab> :tabprevious<CR>
|
|||
noremap <C-Tab> :tabnext<CR>
|
||||
noremap <silent> <C-A-S-Tab> :execute 'silent! tabmove' . (tabpagenr()-2)<CR>
|
||||
noremap <silent> <C-A-Tab> :execute 'silent! tabmove' . (tabpagenr()+1)<CR>
|
||||
|
||||
|
||||
" Configure Plugin airline
|
||||
let g:airline_powerline_fonts=1
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
let g:airline_theme='angr'
|
||||
|
|
Loading…
Reference in a new issue