dotfiles/.vim/colors/dln-light.vim

41 lines
1,018 B
VimL
Raw Normal View History

2016-10-17 14:06:09 +02:00
" Vim color file
2017-02-20 08:20:48 +01:00
color s
2016-10-17 14:06:09 +02:00
" Maintainer: Daniel Lundin <dln@eintr.org>
" Last Change: Mon Oct 17 13:18:58 CEST 2016
" Set 'background' back to the default. The value can't always be estimated
" and is then guessed.
hi clear Normal
set bg&
" Remove all existing highlighting and set the defaults.
hi clear
" Load the syntax highlighting defaults, if it's enabled.
if exists("syntax_on")
syntax reset
endif
let colors_name = "dln-light"
2016-10-21 12:38:54 +02:00
hi LineNr ctermfg=252 cterm=italic
2016-10-17 14:06:09 +02:00
hi Visual ctermbg=220
hi Search ctermbg=226
2016-10-21 12:38:54 +02:00
hi CursorLine ctermbg=255 cterm=NONE
hi CursorLineNr ctermfg=245 ctermbg=255 cterm=italic
2016-10-17 14:06:09 +02:00
hi Type ctermfg=5 cterm=NONE
" hi Comment ctermfg=243 cterm=italic
hi Comment ctermfg=1 cterm=italic
hi String ctermfg=2 cterm=italic
" hi Statement ctermfg=4 cterm=NONE
hi Statement ctermfg=17 cterm=bold
hi Constant ctermfg=6 cterm=NONE
2016-10-21 12:38:54 +02:00
hi PreProc ctermfg=25 cterm=bold
2016-10-17 14:06:09 +02:00
2016-10-21 12:38:54 +02:00
hi rustFuncName ctermfg=124 cterm=bold
hi rustCommentLineDoc ctermfg=137 cterm=italic
hi rustModPath ctermfg=4 cterm=NONE
2016-10-17 14:06:09 +02:00
" vim: sw=2