Tuesday, August 23, 2016

Re: Change color of no line

On Tuesday, August 23, 2016 at 11:22:25 AM UTC+2, Christian Brabandt wrote:
> Hi,
>
>
> Am 2016-08-23 10:32, schrieb Ni Va:
> > I would like to change the bg color of "no line" and of buffer.
> >
> > _________________________________
> > line0
> > line1
> > .
> > .
> > lineN
> > ~ <<< this ONE
> > _________________________________
> >
> > I don't succeed to find the match name pattern.
> >
> > Thank you
>
> recent Vim builds include the EndOfBuffer highlighting group.
> You can use that to change the highlighting.
>
> Best,
> Christian

Seems to fail :

" Vim color file -- with 256 colour support!
"
" Author: Anthony Carapetis <anthony.carapetis@gmail.com>
" Contributors: Lucas Tadeu <lucastadeuteixeira@gmail.com>
"
" Note: Based on github's syntax highlighting theme
" Used Brian Mock's darkspectrum as a starting point/template
" Thanks to Ryan Heath for an easy list of some of the colours:
" http://rpheath.com/posts/356-github-theme-for-syntax-gem

set background=light

if version > 580
hi clear
if exists("syntax_on")
syntax reset
endif
endif

let colors_name = "github"

" {{{ General colors
hi Normal ctermfg=0 ctermbg=255 guifg=#222222 guibg=#bbbbbb
hi EndOfBuffer ctermfg=0 ctermbg=255 guifg=#222222 guibg=#bbbbbb
hi Cursor ctermfg=239 ctermbg=15 guifg=#aaaaaa guibg=#dddddd

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: