1
0
Fork 0

nvim: make comments lighter

This commit is contained in:
tastytea 2022-08-12 17:06:14 +02:00
parent e385249580
commit be6a13ea5b
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,11 @@ packer.use {
'https://github.com/owozsh/amora',
config = function()
vim.cmd('colorscheme amora')
-- make comments a bit lighter
vim.cmd([[
highlight AmoraComment ctermfg=61 guifg=#7C4180
highlight AmoraCommentBold cterm=bold ctermfg=61 gui=bold guifg=#7C4180
]])
end
}