chiark / gitweb /
dot/emacs: Also use `cperl-mode' for `#! .../perl' files.
[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=MiscFixed6x13\ 12
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