Skip to content

Instantly share code, notes, and snippets.

@KPCCoiL
Last active August 29, 2015 14:11
Show Gist options
  • Save KPCCoiL/cd2ed3eee31dfe00e724 to your computer and use it in GitHub Desktop.
Save KPCCoiL/cd2ed3eee31dfe00e724 to your computer and use it in GitHub Desktop.
minimal .vimrc in JOI
set nocp
set number
syntax enable
colorscheme desert
nnoremap ; :
nnoremap : ;
vnoremap ; :
vnoremap : ;
nnoremap j gj
nnoremap k gk
inoremap <C-j> <Right>
set backspace=start,eol,indent
filetype plugin indent on
set incsearch
set ignorecase
set autowrite
for s:i in ['()', '{}', '[]', '<>', '''''', '""']
exec "inoremap " . s:i . " " . s:i . "<Left>"
endfor
"use joi_final.mak for build and test
nnoremap <C-b> :<C-u>make<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment