vim: set t_8f/t_8b to always use high-color terminal

master
an 2019-07-28 11:47:45 -04:00
parent bb37e5919c
commit 4ba4643e8b
1 changed files with 3 additions and 2 deletions

View File

@ -142,8 +142,9 @@ if has('gui_running')
set lines=24
set columns=83
else
" use 256-color terminal capabilities
set t_Co=256
" use high-color terminal capabilities
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
let base16colorspace=256
set termguicolors
endif