summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
blob: eae0ac3d08a7db45f6ccc359e41b51c7bd5c1f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
syntax on
colorscheme desert256
filetype plugin indent on

set t_Co=88      " 88 colors
set ls=0         " disable statusbar
"set number       " enable linenumbers
set noerrorbells " bell sucks
set autoindent
set tabstop=8
set shiftround
set modeline     " enable modelines
set nobackup     " get rid of backupfiles
set listchars=tab:»·
"set list         " enable tab chars


" NERDtree stuff
let g:NERDTreeQuitOnOpen = 1
let g:NERDChristmasTree = 1
let g:NERDTreeStatusline = 1
let g:NERDTreeWinPos = 2

nmap <F1> :echo<CR>
imap <F1> <C-o>:echo<CR>
map <F1> :execute 'NERDTreeToggle'<CR>

" auto headers
autocmd bufnewfile *.py so ~/etc/vim/header_python
autocmd bufnewfile *.html so ~/etc/vim/header_html
autocmd bufnewfile,bufread *.tpl set filetype=html