chiark / gitweb /
dot/ipython-config.py: Hedge against the necessary modules not being there.
[profile] / dot / vimrc
index cdb92ef157c9a046c5f5e05327e436747f68be7d..96dfec953396c4995210d02fde1c6012d40bcd99 100644 (file)
--- a/dot/vimrc
+++ b/dot/vimrc
@@ -1,6 +1,17 @@
 set incsearch
 set showcmd
+set autoindent
+
+set softtabstop=2
+set shiftwidth=2
 
 if &t_Co > 2 || has("gui_running")
   syntax on
+  set guifont=Fixed\ 13
+  hi Normal guifg=white guibg=black
+  set background=dark
+endif
+
+if has("autocmd")
+  filetype plugin indent on
 endif