summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
blob: 5ab6dea8917e3d4594c87786ad069049f8e00acf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
syntax on
colorscheme Vitamins_Vim_Colorscheme_by_hcalves
filetype plugin indent on

set t_Co=88
set ls=0
set number
set noerrorbells
set autoindent
set tabstop=4
set textwidth=80
set shiftwidth=4
set shiftround
set modeline
set nobackup
set nohlsearch
"set foldenable
"set listchars=tab:»·
"set list         " enable tab chars

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