Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion _vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
File renamed without changes.
45 changes: 45 additions & 0 deletions theme1_vimrc.vim
Original file line number Diff line number Diff line change
@@ -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