chiark / gitweb /
el/dot-emacs.el (mdw-fontify-rust): Fix integer literal syntax.
[profile] / dot / vimrc
CommitLineData
b3468c3b
MW
1set incsearch
2set showcmd
032e314f 3set autoindent
b3468c3b 4
0b496fcb
MW
5set softtabstop=2
6set shiftwidth=2
7
b3468c3b
MW
8if &t_Co > 2 || has("gui_running")
9 syntax on
a6780078 10 set guifont=Fixed\ 13
032e314f
MW
11 hi Normal guifg=white guibg=black
12 set background=dark
b3468c3b 13endif
0b496fcb 14
289af37c
MW
15if has("autocmd")
16 filetype plugin indent on
17endif