vim-one icon indicating copy to clipboard operation
vim-one copied to clipboard

call one#highlight does not seem to work in init.vim

Open micalexander opened this issue 7 years ago • 1 comments

call one#highlight('CursorLineNr', '282c33', '99c37e', 'none') only seems to work when called explicitly.

I currently have the code below in my init.vim

set background=dark
colorscheme one
call one#highlight('CursorLineNr', '282c33', '99c37e', 'none')

micalexander avatar Jan 27 '18 17:01 micalexander

Most likely can be fixed by putting call one#highlight after the following two commands,

filetype plugin indent on
syntax on

see https://github.com/neovim/neovim/issues/5730#issuecomment-265605828

francium avatar Feb 12 '20 03:02 francium