dotfiles/.vimrc

36 lines
971 B
VimL
Raw Normal View History

2019-10-02 21:06:34 -05:00
" genera editing options
set nocompatible
set tabstop=4
set expandtab
set paste
set nowrap
set autoindent
set linebreak
syntax on
filetype plugin indent on
" file specific overrides
au BufNewFile,BufRead *Makefile,*.mk set noexpandtab
au BufNewFile,BufRead *.py,*.java set tabstop=2
au BufNewFile,BufRead *.app set filetype=erlang
au BufNewFile,BufRead .bash_* set filetype=sh
au BufNewFile,BufRead *.erl filetype indent off
au BufNewFile,BufRead *.hrl filetype indent off
nmap <C-t> :execute "!make && make test"<CR>
let g:BASH_AuthorName = 'Jeremy Wall'
let g:BASH_AuthorRef = 'jw'
let g:BASH_Email = 'jeremy@marzhillstudios.com'
let g:BASH_Company = 'Marzhillstudios.com'
let g:clj_want_gorilla = 1
let g:clj_highlight_builtins = 1
let g:clj_highlight_contrib = 1
let g:clj_paren_rainbow = 1
let vimclojure#NailgunClient = "/Users/jwall/bin/ng"
let g:erlangFoldSplitFunction=0
colorscheme desert256