You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
786 B
25 lines
786 B
6 years ago
|
" Specify a directory for plugins
|
||
|
" - For Neovim: ~/.local/share/nvim/plugged
|
||
|
" - Avoid using standard Vim directory names like 'plugin'
|
||
|
call plug#begin('~/.vim/plugged')
|
||
|
|
||
|
" Make sure you use single quotes
|
||
|
Plug 'https://github.com/scrooloose/nerdtree.git'
|
||
|
Plug 'raimondi/delimitmate'
|
||
|
Plug 'Chiel92/vim-autoformat'
|
||
|
Plug 'https://github.com/tpope/vim-surround'
|
||
|
|
||
|
" Initialize plugin system
|
||
|
call plug#end()
|
||
|
|
||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||
|
" => Nerd Tree
|
||
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||
|
let g:NERDTreeWinPos = "left"
|
||
|
let NERDTreeShowHidden=0
|
||
|
let NERDTreeIgnore = ['\.pyc$', '__pycache__']
|
||
|
let g:NERDTreeWinSize=35
|
||
|
map <leader>nn :NERDTreeToggle<cr>
|
||
|
map <leader>nb :NERDTreeFromBookmark<Space>
|
||
|
map <leader>nf :NERDTreeFind<cr>
|