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.
24 lines
801 B
24 lines
801 B
" Specify a directory for plugins |
|
" - For Neovim: ~/.local/share/nvim/plugged |
|
" - Avoid using standard Vim directory names like 'plugin' |
|
call plug#begin('~/.oh-my-terminal/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>
|
|
|