Last active
November 25, 2015 00:47
-
-
Save di3goleite/9bd3a70de0c9343a5571 to your computer and use it in GitHub Desktop.
This file contains 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
" Enable powerline fonts | |
let g:airline_powerline_fonts = 1 | |
" 3.2 - NERDTree | |
let NERDTreeMinimalUI = 1 | |
let NERDTreeDirArrows = 1 | |
let g:NERDTreeWinSize = 30 | |
let g:NERDTreeShowBookmarks=1 | |
" 3.3 - NERDTree Tabs | |
" Auto open nerd tree on startup | |
let g:nerdtree_tabs_open_on_gui_startup = 0 | |
"" Focus in the main content window | |
let g:nerdtree_tabs_focus_on_files = 1 | |
" 3.6 - Gundo | |
" open on the right so as not to compete with the nerdtree | |
let g:gundo_right = 1 | |
" a little wider for wider screens | |
let g:gundo_width = 60 | |
" 3.7 - Syntastic | |
let g:syntastic_javascript_checkers = ['jshint'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment