diff --git a/README.md b/README.md index 372feef..bccd0ee 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,8 @@ How to use/Install which are quite useful. Theme: Contains all the text and colours related settings. + If you wish, you may change to another VIM theme + (ie theme1_vimrc or your own) 4 - Copy the edited _vimrc file to your Vim installation folder. diff --git a/_vimrc b/_vimrc index 145de1a..118a4be 100644 --- a/_vimrc +++ b/_vimrc @@ -28,7 +28,7 @@ let $advanced_vimrc=$REPO_PATH."advanced_vimrc.vim" let $filetypes_vimrc=$REPO_PATH."filetypes_vimrc.vim" let $extensions_vimrc=$REPO_PATH."extensions_vimrc.vim" let $familiar_mode_vimrc=$REPO_PATH."familiar_mode_vimrc.vim" -let $theme_vimrc=$REPO_PATH."theme_vimrc.vim" +let $theme_vimrc=$REPO_PATH."theme0_vimrc.vim" " Source (execute/implement) specific configurations; diff --git a/theme_vimrc.vim b/theme0_vimrc.vim similarity index 100% rename from theme_vimrc.vim rename to theme0_vimrc.vim diff --git a/theme1_vimrc.vim b/theme1_vimrc.vim new file mode 100644 index 0000000..6288222 --- /dev/null +++ b/theme1_vimrc.vim @@ -0,0 +1,45 @@ +"""" INTRODUCTION """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" +" Author: +" Dr-Lord +" Version: +" 0.1 - 11-12/02/2015 +" +" Repository: +" https://github.com/Dr-Lord/Vim +" +" Description: +" Theme related part of the personal vim configuration of Dr-Lord. +" This configuration file deals with colours, fonts and any other +" graphical preference setting. +" +" Sections: +" 1 - Basics +" + + + +"""" 1 - BASICS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +" Set font and size +set guifont=Lucida_Sans_Typewriter:h14:cANSI + +" Set colourscheme +colorscheme torte + +" Set row number colour (no row highlighting whatsoever) +highlight CursorLine term=NONE cterm=NONE ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE +highlight CursorLineNR guifg=Red guibg=NONE + + +" Set popup (including autocomplete one) colours +highlight Pmenu guibg=DarkGray guifg=Black +highlight PMenuSel guibg=Gray guifg=White + + +" Set specific column highlighting +highlight ColorColumn guibg=DarkGreen + +" Search highlighting colour +highlight Visual guifg=NONE guibg=#333333 gui=NONE +highlight Search guifg=NONE guibg=#444444