We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
" vim-airline let g:airline_powerline_fonts = 1 " theme let g:airline_theme='deus' let g:bufferline_echo = 0 let g:airline_mode_map = { \ '__' : '-', \ 'n' : 'N', \ 'i' : 'I', \ 'R' : 'R', \ 'c' : 'C', \ 'v' : 'V', \ 'V' : 'V', \ 's' : 'S', \ 'S' : 'S', \ } " 关闭检测空格 let g:airline#extensions#whitespace#enabled = 0 let g:airline_exclude_preview = 1 let g:airline#extensions#hunks#non_zero_only = 1 let g:airline#extensions#ale#enabled = 0 let g:airline_section_z = airline#section#create(['windowswap', '%3p%% ', 'linenr']) " 始终显示状态栏 set laststatus=2 " 启用256色 set term=xterm-256color
if you are using terminal:
The color doesn't look right
I hope so
The text was updated successfully, but these errors were encountered:
Disable your terminal theme in iTerm, it's overriding colors.
Sorry, something went wrong.
set termguicolors
Try to add this after
set t_Co=256
It told Vim to use 256 colors and enable true color support.At least it works in Windows Terminal
you either use:
:set termguicolors
(for true color mode) or use:
to use 256colors.
No branches or pull requests
environment
if you are using terminal:
if you are using Neovim: no
actual behavior
The color doesn't look right
expected behavior
I hope so
screen shot (if possible)
The text was updated successfully, but these errors were encountered: