" Status bar
set laststatus=2
-" Without setting this, ZoomWin restores windows in a way that causes
-" equalalways behavior to be triggered the next time CommandT is used.
-" This is likely a bludgeon to solve some other issue, but it works
-set noequalalways
-
" NERDTree configuration
let NERDTreeIgnore=['\.pyc$', '\.rbc$', '\~$']
map <Leader>n :NERDTreeToggle<CR>
vmap <C-Up> [egv
vmap <C-Down> ]egv
-" Enable syntastic syntax checking
-let g:syntastic_enable_signs=1
-let g:syntastic_quiet_warnings=1
-
" gist-vim defaults
if has("mac")
let g:gist_clip_command = 'pbcopy'
let g:tagbar_ctags_bin="/usr/local/bin/ctags"
" Color Column
-set colorcolumn=81
+let &colorcolumn="80,150"
" Add Pathogen
call pathogen#infect()
let g:ctrlp_user_command = ['.git', 'cd %s && git ls-files']
" Relative numbers
-autocmd FocusLost * :set number
-autocmd InsertEnter * :set number
+autocmd FocusLost * :set norelativenumber
+autocmd InsertEnter * :set norelativenumber
autocmd InsertLeave * :set relativenumber
autocmd CursorMoved * :set relativenumber
function! NumberToggle()
if(&relativenumber == 1)
- set number
+ set norelativenumber
else
set relativenumber
endif
nnoremap <C-n> :call NumberToggle()<cr>
-" Find file and Find stuff to quickfix.
-command -nargs=1 Qff :cexpr system('find . \| ag <f-args>') | copen
-
-function! ToggleCWindow()
- if exists("g:qwindow")
- cclose
- unlet g:qwindow
- else
- copen
- let g:qwindow = 1
- endif
-endfunction
-nnoremap <C-h> :call ToggleCWindow()<cr>
+" Syntastic stuff
+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 = "⚠︎"