tsuquyomi icon indicating copy to clipboard operation
tsuquyomi copied to clipboard

Low contrast unreadable messages

Open fcanela opened this issue 7 years ago • 2 comments

The errors appears to me in low contrast being unreadable. I saw no prior open issue nor documentation about how to tune this.

terminal.png

fcanela avatar Nov 27 '17 10:11 fcanela

Using NVIM v0.2.2-dev.

nvim init.vim content is:

call plug#begin('~/.vim/plugged')

filetype off                  " required
syntax on

" sane editing
set tabstop=4
set shiftwidth=4
set softtabstop=4
set number

" Convert tab to spaces
set expandtab

" no temporal files in folders
set swapfile
set dir=/media/fcanela/storage/tmp/vim

" Make sure you use single quotes

Plug 'vim-airline/vim-airline'
Plug 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle', 'NERDTree'] }
Plug 'editorconfig/editorconfig-vim'

" Autocomplete
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
let g:deoplete#enable_at_startup = 1

" Syntax chack
Plug 'vim-syntastic/syntastic'
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_enable_signs=1
let g:syntastic_check_on_open = 1
let g:syntastic_javascript_checkers = ["eslint"]

" Full JS colors
Plug 'pangloss/vim-javascript'

" Golang
Plug 'fatih/vim-go'

" TypeScript
Plug 'leafgarland/typescript-vim'
Plug 'Shougo/vimproc.vim', {'do' : 'make'}
Plug 'Quramy/tsuquyomi'
if !exists("g:ycm_semantic_triggers")
 let g:ycm_semantic_triggers = {}
endif
let g:ycm_semantic_triggers['typescript'] = ['.']

" Color plugin
Plug 'trevordmiller/nova-vim'

" Statistics
Plug 'wakatime/vim-wakatime'

" Add plugins to &runtimepath
call plug#end()

I have no color issues with any other language, message or application. I also disabled trevordmiller/nova-vim plugin and the issue still happens.

fcanela avatar Nov 27 '17 10:11 fcanela

That's just the quickfix window, tsuquyomi uses it but has no control over its styling. Try changing to another colour scheme with e.g. :colorscheme ron (to use the built-in "ron" colour scheme).

By the you are not actually using nova-vim in your init.vim, you need the line colorscheme nova after Plug 'trevordmiller/nova-vim'

nickspoons avatar Jan 07 '18 23:01 nickspoons