You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What would you think of adding some lines to the code that would set a default color scheme for vim terminals? You could do this for vim by adding:
let g:terminal_ansi_colors = ['#5f5f87', '#af5f5f', '#87875f', '#af875f', '#878787', '#af8787', '#87afaf', '#dfdfaf', '#878787', '#af0000', '#875f5f', '#8787af', '#5f8787', '#5f5f87', '#5f875f', '#5f8787']
and for neovim by adding the
let g:terminal_color_0 = '#5f5f87'
let g:terminal_color_1 = '#af5f5f'
let g:terminal_color_2 = '#87875f'
let g:terminal_color_3 = '#af875f'
let g:terminal_color_4 = '#878787'
let g:terminal_color_5 = '#af8787'
let g:terminal_color_6 = '#87afaf'
ect lines for whatever colors you deemed to be the best.
The text was updated successfully, but these errors were encountered:
bearcatsandor
changed the title
Default terminal color scheme
Set default terminal color scheme in [neo]vim - request
Apr 12, 2020
What would you think of adding some lines to the code that would set a default color scheme for vim terminals? You could do this for vim by adding:
let g:terminal_ansi_colors = ['#5f5f87', '#af5f5f', '#87875f', '#af875f', '#878787', '#af8787', '#87afaf', '#dfdfaf', '#878787', '#af0000', '#875f5f', '#8787af', '#5f8787', '#5f5f87', '#5f875f', '#5f8787']
and for neovim by adding the
let g:terminal_color_0 = '#5f5f87'
let g:terminal_color_1 = '#af5f5f'
let g:terminal_color_2 = '#87875f'
let g:terminal_color_3 = '#af875f'
let g:terminal_color_4 = '#878787'
let g:terminal_color_5 = '#af8787'
let g:terminal_color_6 = '#87afaf'
ect lines for whatever colors you deemed to be the best.
The text was updated successfully, but these errors were encountered: