-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsatori.vim
More file actions
54 lines (47 loc) · 1.7 KB
/
Copy pathsatori.vim
File metadata and controls
54 lines (47 loc) · 1.7 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
48
49
50
51
52
53
54
" Vim color file
" Maintainer: Rudá Moura <ruda.moura@gmail.com>
" Last Change: Sun Aug 5 16:23:41 BRT 2012
highlight clear Normal
set background&
highlight clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "satori"
" Vim colors
highlight Normal ctermfg=NONE cterm=NONE
highlight Comment ctermfg=Cyan cterm=NONE
highlight Constant ctermfg=Red cterm=NONE
highlight Number ctermfg=Red cterm=NONE
highlight Identifier ctermfg=NONE cterm=NONE
highlight Statement ctermfg=NONE cterm=Bold
highlight PreProc ctermfg=Blue cterm=NONE
highlight Type ctermfg=Magenta cterm=NONE
highlight Special ctermfg=Magenta cterm=NONE
highlight Search ctermbg=Green cterm=NONE
highlight MatchParen ctermbg=NONE cterm=Inverse
highlight Error ctermbg=Red cterm=NONE
highlight Todo ctermbg=Cyan cterm=NONE
" Vim monochrome
highlight Normal term=NONE
highlight Comment term=NONE
highlight Constant term=Underline
highlight Number term=Underline
highlight Identifier term=NONE
highlight Statement term=Bold
highlight PreProc term=NONE
highlight Type term=Bold
highlight Special term=NONE
" GVim colors
highlight Normal guifg=NONE gui=NONE
highlight Comment guifg=DarkCyan gui=NONE
highlight Constant guifg=Red gui=NONE
highlight Number guifg=Red gui=Bold
highlight Identifier guifg=NONE gui=NONE
highlight Statement guifg=NONE gui=Bold
highlight PreProc guifg=Blue gui=NONE
highlight Type guifg=Magenta gui=NONE
highlight Special guifg=Red gui=Bold
highlight Search guifg=Green gui=NONE
highlight Error guifg=Red gui=NONE
highlight Todo guifg=Cyan gui=NONE