diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-03-14 19:11:19 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-03-14 19:11:19 +0100 |
| commit | 01e206524dfa62b8812599366806a11f2cae15fd (patch) | |
| tree | 130a037d78d71a97adb70d46251aa9b39b54e412 /vimrc | |
| parent | 0111fba856f086d9b94858328e1388d724c12826 (diff) | |
Merge master
Diffstat (limited to 'vimrc')
| -rwxr-xr-x | vimrc | 38 |
1 files changed, 27 insertions, 11 deletions
@@ -88,10 +88,6 @@ map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR> " Normal mode: <Leader>t map <Leader>te :tabe <C-R>=expand("%:p:h") . "/" <CR> -" Inserts the path of the currently edited file into a command -" Command mode: Ctrl+P -cmap <C-P> <C-R>=expand("%:p:h") . "/" <CR> - " Unimpaired configuration " Bubble single lines nmap <C-Up> [e @@ -154,11 +150,6 @@ set foldnestmax=10 set nofoldenable set foldlevel=1 -" powerline stuff -python from powerline.vim import setup as powerline_setup -python powerline_setup() -python del powerline_setup - " Fix CtrlP root folder and add some ignores let g:ctrlp_working_path_mode = 0 let g:ctrlp_custom_ignore = '\v[\/](\.(git|hg|svn)|node_modules|DS_Store)$' @@ -185,5 +176,30 @@ let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_always_populate_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 -let g:syntastic_error_symbol = "✕" -let g:syntastic_warning_symbol = "⚠︎" +let g:syntastic_error_symbol = "X" +let g:syntastic_warning_symbol = "!" + +" Dank Mono Italics +highlight Keyword cterm=italic + +" FZF config +set rtp+=/usr/local/opt/fzf + +" Inserts the path of the currently edited file into a command +noremap <C-P> :FZF <CR> + +" Map colors to vim colors +let g:fzf_colors = +\ { 'fg': ['fg', 'Normal'], + \ 'bg': ['bg', 'Normal'], + \ 'hl': ['fg', 'Comment'], + \ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'], + \ 'bg+': ['bg', 'CursorLine', 'CursorColumn'], + \ 'hl+': ['fg', 'Statement'], + \ 'info': ['fg', 'PreProc'], + \ 'border': ['fg', 'Ignore'], + \ 'prompt': ['fg', 'Conditional'], + \ 'pointer': ['fg', 'Exception'], + \ 'marker': ['fg', 'Keyword'], + \ 'spinner': ['fg', 'Label'], + \ 'header': ['fg', 'Comment'] } |