From 9aa6ff07022b93797f8d58464494756f94051215 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 12 Apr 2011 22:49:12 +1200 Subject: Adding my custom colorscheme as a plugin. --- vim/vimrc | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'vim/vimrc') diff --git a/vim/vimrc b/vim/vimrc index 20a88fc9..b9c84893 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -2,14 +2,17 @@ call pathogen#runtime_append_all_bundles() call pathogen#helptags() +" Filetypes +if has("autocmd") + filetype on + filetype plugin on + filetype indent on +endif + " Colors -if has("syntax") && ((&t_Co > 15) || has("gui_running")) - set background=dark +if has("syntax") syntax enable - if (&t_Co > 255) || has("gui_running") - colorscheme desert256 - highlight Pmenu ctermfg=0 ctermbg=8 - endif + colorscheme dessert endif " Command @@ -30,19 +33,11 @@ if has("multi_byte") set encoding=utf-8 endif -" Filetypes -if has("autocmd") - filetype on - filetype plugin on - filetype indent on -endif - " Indenting set autoindent set smartindent " Leaders -nnoremap c :set cursorline! cursorcolumn! nnoremap h :set hlsearch! nnoremap l :set list! nnoremap n :set number! -- cgit v1.2.3