chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / vimrc
... / ...
CommitLineData
1set incsearch
2set showcmd
3set autoindent
4
5set softtabstop=2
6set shiftwidth=2
7
8if &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
13endif
14
15if has("autocmd")
16 filetype plugin indent on
17endif