summaryrefslogtreecommitdiffstats
path: root/vim/vimrc
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-03-13 15:44:02 +0100
committerStefan Ritter <xeno@thehappy.de>2011-03-13 15:44:02 +0100
commita7fd62f8d80a5bb6c7994e63d0b4b58176f45c78 (patch)
treeb896f8f51946eb4fbc9f19b9d4f17fe1e6bb4a8e /vim/vimrc
parentab7b153bbc22acbe8dd46af739ed2c7134afa5f7 (diff)
Some updates
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc26
1 files changed, 7 insertions, 19 deletions
diff --git a/vim/vimrc b/vim/vimrc
index c18062d..5ab6dea 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -1,35 +1,23 @@
syntax on
-colorscheme Mustang_Vim_Colorscheme_by_hcalves
+colorscheme Vitamins_Vim_Colorscheme_by_hcalves
filetype plugin indent on
-set t_Co=88 " 88 colors
+set t_Co=88
set ls=0
-set number " enable linenumbers
-set noerrorbells " bell sucks
+set number
+set noerrorbells
set autoindent
set tabstop=4
set textwidth=80
set shiftwidth=4
set shiftround
-set modeline " enable modelines
-set nobackup " get rid of backupfiles
-set nohlsearch " stop hilight all matches
+set modeline
+set nobackup
+set nohlsearch
"set foldenable
"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