Skip to content

Instantly share code, notes, and snippets.

@schleumer
Created November 29, 2016 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schleumer/b85f5ebd4d5be9a32c54ba63f639a5a5 to your computer and use it in GitHub Desktop.
Save schleumer/b85f5ebd4d5be9a32c54ba63f639a5a5 to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'fatih/vim-go'
Plug 'StanAngeloff/php.vim'
Plug 'altercation/vim-colors-solarized'
Plug 'scrooloose/nerdtree'
Plug 'wakatime/vim-wakatime'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'posva/vim-vue'
Plug 'jeetsukumaran/vim-buffergator'
" Add plugins to &runtimepath
call plug#end()
let g:solarized_termcolors=256
let g:NERDTreeIgnore=['\.\.$', '\.$', '\~$']
let g:NERDTreeDirArrows = 0
let g:NERDTreeDirArrowExpandable = '>'
let g:NERDTreeDirArrowCollapsible = 'v'
let g:NERDTreeQuitOnOpen=1
syntax enable
set background=dark
colorscheme solarized
noremap <C-E> :NERDTreeToggle<CR>
noremap <C-B> :BuffergatorToggle<CR>
" noremap <C-B> :bn<CR>
" noremap <C-S-B> :bp<CR>
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/]\.(git|hg|svn)$|\v[\/]node_modules$|\v[\/]vendor$',
\ 'file': '\v\.(exe|so|dll)$',
\ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment