Created
August 26, 2014 10:04
-
-
Save milesrout/90bfa23c774ec8162845 to your computer and use it in GitHub Desktop.
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
syntax on | |
nnoremap ; : | |
nnoremap : ; | |
" Sane auto-completion | |
set wildmode=list:longest,longest | |
" Set working directory to the current file automatically | |
set autochdir | |
" C/C++ indentation options | |
set cino=b1,g0,N-s | |
set cinkeys=0{,0},0),:,0#,!^F,o,O,e,0=break | |
set autoindent | |
" Splits | |
set splitbelow | |
set splitright | |
" DCPU-16 Assembly | |
autocmd BufNewFile,BufRead *.dasm16,*.dasm setf dasm | |
set ts=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment