Created
January 23, 2017 16:07
-
-
Save AraLawrence/b166bc991e50aa56b7d11bfa65a9ff1c to your computer and use it in GitHub Desktop.
Ara's current settings
This file contains hidden or 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
"" BASIC SETUP | |
filetype plugin indent on | |
set omnifunc=syntaxcomplete#Complete | |
syntax on | |
set encoding=utf-8 | |
set number | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
"" PATHOGEN | |
execute pathogen#infect() | |
"" REMAPPINGS | |
inoremap jk <ESC> | |
let mapleader = "\<Space>" | |
"" THEME | |
set background=light | |
colorscheme solarized | |
"" SYNTASTIC SETTINGS | |
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 | |
"" SYNTASTIC CHECKERS | |
" Checkers for Go | |
let g:syntastic_go_checkers = ['go', 'gofmt', 'govent'] | |
" Checkers for JavaScript | |
let g:syntastic_javascript_checkers = ['javascript/eslint'] | |
let g:syntastic_javascript_eslint_exe = '$(npm bin)/eslint' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment