This repository was archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathdjango.vim
59 lines (49 loc) · 1.45 KB
/
django.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
48
49
50
51
52
53
54
55
56
57
58
"
" Django Color Scheme
" ===================
"
" conversion of the textmate django colorscheme from the django
" trac.
"
" Author: Armin Ronacher <[email protected]>
" Version: 0.1
"
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "django"
" Default Colors
hi Normal guifg=#f8f8f8 guibg=#0b2f20
hi NonText guifg=#0b2f20 guibg=#1a3c2f
hi Cursor guibg=#336242
hi lCursor guibg=#336242
" Search
hi Search guibg=peru guifg=wheat
hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
hi Search cterm=NONE ctermfg=grey ctermbg=blue
" Window Elements
hi StatusLine guifg=white guibg=#8fbb9e gui=bold
hi StatusLineNC guifg=#1a3c2f guibg=#8dbc6a
hi VertSplit guifg=#244a2a guibg=#244a2a
hi Folded guifg=#8cbb9e guibg=#244a2a
hi IncSearch guifg=slategrey guibg=khaki
" Specials
hi Todo guifg=#c6210b guibg=#61150b gui=bold
hi Title guifg=#ffffff gui=bold
" Strings
hi String guifg=#87bb9e
hi Constant guifg=#87bb9e
" Syntax
hi Number guifg=#387258 gui=bold
hi Statement guifg=#f2e862 gui=bold
hi Function guifg=#fec756
hi PreProc guifg=#aa5507 gui=bold
hi Comment guifg=#245032 gui=italic
hi Type guifg=#96dd3b gui=bold
" Diff
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1