summaryrefslogtreecommitdiffstats
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
parentab7b153bbc22acbe8dd46af739ed2c7134afa5f7 (diff)
Some updates
-rw-r--r--pentadactylrc1
-rw-r--r--vim/Vitamins_Vim_Colorscheme_by_hcalves.vim2
-rw-r--r--vim/vimrc26
3 files changed, 8 insertions, 21 deletions
diff --git a/pentadactylrc b/pentadactylrc
index 96a8e30..7770d15 100644
--- a/pentadactylrc
+++ b/pentadactylrc
@@ -1,3 +1,2 @@
set guioptions=bBCrs
set autocomplete=
-set colorscheme zenburn
diff --git a/vim/Vitamins_Vim_Colorscheme_by_hcalves.vim b/vim/Vitamins_Vim_Colorscheme_by_hcalves.vim
index 91a9edf..2f25432 100644
--- a/vim/Vitamins_Vim_Colorscheme_by_hcalves.vim
+++ b/vim/Vitamins_Vim_Colorscheme_by_hcalves.vim
@@ -24,7 +24,7 @@ endif
" General colors
hi Cursor guifg=NONE guibg=#656565 gui=none ctermbg=0x241
-hi Normal guifg=#f6f3f0 guibg=#242424 gui=none ctermfg=254 ctermbg=235
+hi Normal guifg=#f6f3f0 guibg=#242424 gui=none ctermfg=254 ctermbg=232
hi NonText guifg=#808080 guibg=#303030 gui=none ctermfg=242 ctermbg=237
hi LineNr guifg=#5c5a4f guibg=#000000 gui=none ctermfg=239 ctermbg=232
hi StatusLine guifg=#f6f3e8 guibg=#444444 gui=italic
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