nvim: change highlight xolours via nvim api
This commit is contained in:
parent
16226f0a7d
commit
1368924746
|
@ -31,8 +31,6 @@ vim.api.nvim_create_user_command('Ht', 'tab help <args>', {
|
||||||
vim.o.termguicolors = true -- 24 bit colours
|
vim.o.termguicolors = true -- 24 bit colours
|
||||||
vim.cmd('colorscheme amora')
|
vim.cmd('colorscheme amora')
|
||||||
---- make comments a bit lighter
|
---- make comments a bit lighter
|
||||||
vim.cmd([[
|
vim.api.nvim_set_hl(0, 'AmoraComment', { fg = '#7C4180', ctermfg = 61 })
|
||||||
highlight AmoraComment ctermfg=61 guifg=#7C4180
|
vim.api.nvim_set_hl(0, 'AmoraCommentBold',
|
||||||
highlight AmoraCommentBold cterm=bold ctermfg=61 gui=bold guifg=#7C4180
|
{ fg = '#7C4180', ctermfg = 61, bold = true })
|
||||||
]])
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user