Created
November 29, 2016 01:23
-
-
Save schleumer/b85f5ebd4d5be9a32c54ba63f639a5a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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