-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriaxx.vim
More file actions
27 lines (22 loc) · 1.3 KB
/
triaxx.vim
File metadata and controls
27 lines (22 loc) · 1.3 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
" Maintainer: Frédéric Fauberteau (frederic@fauberteau.org)
" Version: 0.2
" Last Change: June 2 2016
" Tell Vim to use colors that look good on a dark background.
set background=dark
" Reset all highlighting to the defaults.
highlight clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "triaxx"
" Syntax highlighting
highlight comment gui=italic guifg=#669900 cterm=italic ctermfg=70
highlight constant guifg=#cc00cc ctermfg=200
highlight delimiter guifg=#cc00cc ctermfg=200
highlight function guifg=#ff8800 ctermfg=202
highlight identifier guifg=#ff8800 cterm=none ctermfg=202
highlight preproc gui=bold guifg=#ffcc00 cterm=bold ctermfg=220
highlight statement gui=bold guifg=#006688 cterm=bold ctermfg=27
highlight todo gui=bold guibg=#669900 guifg=#ffffff cterm=bold ctermbg=70 ctermfg=7
highlight type gui=bold guifg=#ff8800 cterm=bold ctermfg=202
highlight underlined gui=bold guifg=#ffcc00 cterm=underline ctermfg=220