Mercurial > ec-dotfiles
view rc/vimrc @ 360:59dc2f13e0ae
Set default locale for man(1) to C.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Thu, 31 May 2012 23:01:34 +0700 |
parents | b4f92c167f5b |
children | 909b9fc4203e |
line wrap: on
line source
set showmode set showcmd set nomodeline set autoindent set lazyredraw set vb t_vb= set ruler set nohls set nocompatible set backspace=2 set esckeys set noerrorbells set ts=2 set expandtab set title set list map <C-t><up> :tabr<cr> map <C-t><down> :tabl<cr> map <C-t><left> :tabp<cr> map <C-t><right> :tabn<cr> map <C-t>p :tabp<cr> map <C-t>n :tabn<cr> map <C-t><C-t> :NERDTreeToggle<cr> map <C-t><C-m> :NERDTreeMirror<cr> "autocmd VimEnter * NERDTree "autocmd BufEnter * NERDTreeMirror if has('syntax') syntax on set background=dark let g:solarized_termtrans=1 colorscheme solarized endif if has("autocmd") autocmd BufRead,BufNewFile supervisord.conf :set ft=dosini autocmd BufRead,BufNewFile Gemfile :set ft=ruby autocmd BufRead,BufNewFile crontab.* :set noet ts=8 nolist autocmd BufRead,BufNewFile crontab :set noet ts=8 nolist autocmd BufRead,BufNewFile .git/COMMIT_EDITMSG :set noet ts=8 nolist endif