-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme_vimrc.vim
47 lines (37 loc) · 1.19 KB
/
theme_vimrc.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""" INTRODUCTION """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Author:
" Dr-Lord
" Version:
" 0.2 - 30/06/2016
"
" 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
if has("gui_gtk2")
set guifont=Liberation\ Mono\ 14
elseif has("gui_macvim")
set guifont=Liberation\ Mono\ 14
elseif has("gui_win32")
set guifont=Lucida_Sans_Typewriter:h18:cANSI
end
" Set colourscheme
colorscheme slate
" 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=Orange ""guibg=Black " No background change
" 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