diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-05-18 15:05:59 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-05-18 15:05:59 +0100 |
commit | d2d3900ea28d1bd2a86238e9c16d142d07ec7e45 (patch) | |
tree | a7aeef2a9cca2de8be3e77c3116d4b332a088ef7 /nvim/colors/mine.vim | |
parent | 96f53af4ab7b853034c4570ba7f21e2bac10dcbf (diff) |
added .nvim with configuration
Diffstat (limited to 'nvim/colors/mine.vim')
-rw-r--r-- | nvim/colors/mine.vim | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/nvim/colors/mine.vim b/nvim/colors/mine.vim new file mode 100644 index 0000000..653682e --- /dev/null +++ b/nvim/colors/mine.vim @@ -0,0 +1,29 @@ +" Vim color file +" Maintainer: Urbain +" Last Change: 2002/10/14 Mon 16:41. +" version: 1.0 +" This color scheme uses a light background. + +set background=light +hi clear +if exists("syntax_on") + syntax reset +endif + +let colors_name = "mine" + +" Syntax group +hi Comment gui=none guifg=#af5f00 +hi Normal guibg=white guifg=Black +hi Type gui=none guifg=#005f00 +hi Statement gui=none guifg=#5f0000 +hi Special guifg=Black +hi Constant guifg=Gray +hi Error guifg=Red guibg=White +hi Preproc guifg=Blue "\end +hi Constant guifg=Green "\ $$ +hi Identifier guifg=Blue "\begin +hi LineNr gui=none guifg=Gray +hi FoldColumn guibg=#F5F4FD +hi Todo guibg=white gui=underline,italic guifg=Red +hi Conceal guibg=White guifg=DarkGreen |