-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmorrowind.vim
More file actions
47 lines (43 loc) · 1.41 KB
/
morrowind.vim
File metadata and controls
47 lines (43 loc) · 1.41 KB
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
" Vim color file
" Maintainer: Nate Stedman <natesm@gmail.com>
" URL: http://bytes.natestedman.com/morrowind/morrowind.vim
if has("gui_running")
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="morrowind"
hi Normal guifg=#D6D6D6 guibg=grey20
hi Conditional guifg=#FFFFFF gui=bold
hi Comment guifg=#888a85 gui=italic
hi Constant guifg=#F57900
hi Cursor guifg=slategrey guibg=#D3D7CF
hi Folded guifg=gold guibg=grey30
hi FoldColumn guifg=tan guibg=grey30
hi Identifier guifg=#ad7fa8 gui=bold
hi IncSearch guifg=slategrey guibg=khaki
hi Ignore guifg=grey40
hi Keyword guifg=#FFFFFF
hi LineNr guifg=grey30 guibg=#000000
hi ModeMsg guifg=goldenrod
hi MoreMsg guifg=SeaGreen
hi NonText guifg=LightBlue guibg=grey30
hi Number guifg=#CE5C00
hi PreProc guifg=#8ae234
hi Question guifg=springgreen
hi Repeat guifg=#FFFFFF gui=bold
hi Search guifg=wheat guibg=peru
hi Special guifg=#FFFFFF gui=bold
hi SpecialKey guifg=yellowgreen
hi StorageClass guifg=#FFFFFF gui=bold
hi Statement guifg=#FFFFFF gui=bold
hi StatusLine guifg=black guibg=#c2bfa5 gui=none
hi StatusLineNC guifg=grey50 guibg=#c2bfa5 gui=none
hi String guifg=#EDD400
hi Title guifg=indianred
hi Todo guifg=orangered guibg=yellow2
hi Type guifg=#8ae234 gui=bold
hi WarningMsg guifg=salmon
hi VertSplit guibg=grey30 guifg=grey50 gui=none
hi Visual guifg=khaki guibg=olivedrab gui=none
endif