vim-one
vim-one copied to clipboard
call one#highlight does not seem to work in init.vim
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')
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