Skip to content

Commit

Permalink
Updated for heavy line numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmeta committed May 19, 2016
1 parent f6ed20f commit e9d8093
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -5,14 +5,15 @@ To use:
- :colo nofrils-light

To customize:
- :let g:nofrils_strbackgrounds=1 to turn highlighted string backgrounds
- :let g:nofrils_heavycomments=1 to turn on high contrast comments rather than the default faded style
- :let g:nofrils\_strbackgrounds=1 to turn highlighted string backgrounds, for languages where strings are a major part of them
- :let g:nofrils\_heavycomments=1 to turn on high contrast comments rather than the default faded style, for projects where the comments are not deceit and lies
- :let g:nofrils\_heavylinenumbers=1 to turn on brighter line numbers, for people who use relative line numbers to hop around

The only highlighted elements are spelling, errors, comments, vim features (diff, etc) and *optionally* string backgrounds

----

The below two screenshots where taken with **:set spell**, **:let g:nofrils_strbackgrounds=1** and **:let g:nofrils_heavycomments=1**. The pink(ish) highlight in strings and comments is for misspellings.
The below two screenshots where taken with **:let g:nofrils\_strbackgrounds=1** and **:let g:nofrils\_heavycomments=1**. The pink(ish) highlight in strings and comments is for misspellings.

![Dark Version](http://i.imgur.com/ARUjg1q.png)
![Light Version](http://i.imgur.com/GMXEMOi.png)
Expand Down
8 changes: 7 additions & 1 deletion colors/nofrils-dark.vim
Expand Up @@ -3,7 +3,7 @@
" URL: https://github.com/robertmeta/nofrils
" (see this url for latest release & screenshots)
" License: OSI approved MIT license
" Modified: 2016 Feb 26
" Modified: 2016 May 19th

hi clear
if exists("syntax_on")
Expand All @@ -18,6 +18,9 @@ endif
if !exists("g:nofrils_heavycomments")
let g:nofrils_heavycomments = 0
endif
if !exists("g:nofrils_heavylinenumbers")
let g:nofrils_heavylinenumbers = 0
endif

" Baseline
hi Normal term=NONE cterm=NONE ctermfg=15 ctermbg=235 gui=NONE guifg=#FFFFFF guibg=#262626
Expand Down Expand Up @@ -134,3 +137,6 @@ end
if g:nofrils_heavycomments
hi Comment term=NONE cterm=NONE ctermfg=135 ctermbg=NONE gui=NONE guifg=#AF5FFF guibg=NONE
end
if g:nofrils_heavylinenumbers
hi LineNr term=NONE cterm=NONE ctermfg=blue ctermbg=235 gui=NONE guifg=blue guibg=#262626
end
6 changes: 6 additions & 0 deletions colors/nofrils-light.vim
Expand Up @@ -18,6 +18,9 @@ endif
if !exists("g:nofrils_heavycomments")
let g:nofrils_heavycomments = 0
endif
if !exists("g:nofrils_heavylinenumbers")
let g:nofrils_heavylinenumbers = 0
endif

" Baseline
hi Normal term=NONE cterm=NONE ctermfg=0 ctermbg=255 gui=NONE guifg=#000000 guibg=#E4E4E4
Expand Down Expand Up @@ -134,3 +137,6 @@ end
if g:nofrils_heavycomments
hi Comment term=NONE cterm=NONE ctermfg=89 ctermbg=NONE gui=NONE guifg=#87005F guibg=NONE
end
if g:nofrils_heavylinenumbers
hi LineNr term=NONE cterm=NONE ctermfg=darkblue ctermbg=255 gui=NONE guifg=darkblue guibg=#E4E4E4
end

0 comments on commit e9d8093

Please sign in to comment.