Skip to content

Instantly share code, notes, and snippets.

@arleighdickerson
Created July 17, 2015 14:25
Show Gist options
  • Save arleighdickerson/007e3c1c50303db27bf0 to your computer and use it in GitHub Desktop.
Save arleighdickerson/007e3c1c50303db27bf0 to your computer and use it in GitHub Desktop.
vimrc
inoremap jk <Esc>
execute pathogen#infect()
syntax on
set noexpandtab
set autoindent
set tabstop=4
set shiftwidth=4
filetype plugin indent on
set nu
set noswapfile
set textwidth=80
source $VIMRUNTIME/mswin.vim
behave mswin
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_javascript_checkers = ['jshint']
if has("gui_running")
inoremap <C-Space> <C-n>
set background=dark
colorscheme solarized
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment