Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added terminal colors for Neovim #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions colors/hybrid.vim
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,32 @@ endif
exe "hi! Normal" .s:fg_foreground .s:bg_normal .s:fmt_none

"}}}

" Neovim Terminal Colors
let g:terminal_color_0 = s:palette.gui.background[s:style] " background gray
let g:terminal_color_8 = s:gui_comment " comment gray

let g:terminal_color_1 = s:palette.gui.red[s:style] " red
let g:terminal_color_9 = s:palette.gui.red[s:style] " dark red

let g:terminal_color_2 = s:palette.gui.green[s:style] " green
let g:terminal_color_10 = g:terminal_color_2

let g:terminal_color_3 = s:palette.gui.yellow[s:style] " yellow
let g:terminal_color_11 = s:palette.gui.orange[s:style] " dark yellow (actually orange)

let g:terminal_color_4 = s:palette.gui.blue[s:style] " blue
let g:terminal_color_12 = '#729fcf' " another shade of blue

let g:terminal_color_5 = s:palette.gui.purple[s:style] " purple
let g:terminal_color_13 = g:terminal_color_5

let g:terminal_color_6 = s:palette.gui.aqua[s:style] " aqua
let g:terminal_color_14 = s:palette.gui.darkcyan[s:style] " dark aqua

let g:terminal_color_7 = '#d3d7cf'
let g:terminal_color_15 = '#707880' " another shade of grade

" Generic Syntax Highlighting: (see :help group-name)"{{{
" ----------------------------------------------------------------------------
exe "hi! Comment" .s:fg_comment .s:bg_none .s:fmt_none
Expand Down