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

Feature request: vim / neovim terminal colors #61

Open
lynndylanhurley opened this issue Jun 18, 2019 · 1 comment
Open

Feature request: vim / neovim terminal colors #61

lynndylanhurley opened this issue Jun 18, 2019 · 1 comment

Comments

@lynndylanhurley
Copy link

I added this as a quick fix to make the neovim terminal colors match the seoul256 terminal color scheme:

" set terminal colors
if has('nvim')
  let g:terminal_color_0 = '#4E4E4E'
  let g:terminal_color_8 = '#626262'

  let g:terminal_color_1 = '#D68787'
  let g:terminal_color_9 = '#D75F87'

  let g:terminal_color_2 = '#5F865F'
  let g:terminal_color_10 = '#87AF87'

  let g:terminal_color_3 = '#D8AF5F'
  let g:terminal_color_11 = '#FFD787'

  let g:terminal_color_4 = '#85ADD4'
  let g:terminal_color_12 = '#ADD4FB'

  let g:terminal_color_5 = '#D7AFAF'
  let g:terminal_color_13 = '#FFAFAF'

  let g:terminal_color_6 = '#87AFAF'
  let g:terminal_color_14 = '#87D7D7'

  let g:terminal_color_7 = '#D0D0D0'
  let g:terminal_color_15 = '#E4E4E4'
endif

This works for me, but it's probably not a complete solution (i.e. I don't think this takes the light / dark color variants into account). It would be great if terminal color support was built into this colorscheme.

@jessezbj
Copy link

jessezbj commented Mar 12, 2021

Will this become a pull request? And different from neovim, vim uses g:terminal_ansi_colors

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants