Last active
December 28, 2015 19:49
-
-
Save tonylegrone/7552608 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
set list listchars=tab:\ \ ,trail:· | |
set timeoutlen=0 | |
let g:UltiSnipsSnippetsDir="~/.vim/bundles/UltiSnips/UltiSnips/" | |
let g:airline_theme='badwolf' | |
let g:airline_powerline_fonts=1 | |
let g:airline_section_c = '%<%t%m' | |
let g:bufferline_echo = 0 | |
" make sure vimgutter looks good | |
" highlight SignColumn ctermbg=black | |
highlight link GitGutterAdd DiffAdd | |
highlight link GitGutterChange DiffChange | |
highlight link GitGutterDelete DiffDelete | |
highlight link GitGutterChangeDelete DiffChangeDelete | |
let g:gitgutter_highlight_lines = 0 | |
" set up soft wrap | |
command! -nargs=* Wrap set wrap linebreak nolist | |
let g:ackprg = 'ag --nogroup --nocolor --column' | |
au FileType javascript setl conceallevel=2 concealcursor=nc | |
let g:syntax_js=['function', 'return', 'solarized', 'this', 'proto'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment