chiark / gitweb /
el/dot-emacs.el: Don't choke now Magit lacks `global-magit-file-mode'.
[profile] / dot / vimrc
1 set incsearch
2 set showcmd
3 set autoindent
4
5 set softtabstop=2
6 set shiftwidth=2
7
8 if &t_Co > 2 || has("gui_running")
9   syntax on
10   set guifont=Fixed\ 13
11   hi Normal guifg=white guibg=black
12   set background=dark
13 endif
14
15 if has("autocmd")
16   filetype plugin indent on
17 endif