feat: Added option for italic_comments

navigator
ashincoder 3 years ago committed by siduck76
parent 112d3866a5
commit a49f62d3c6

@ -11,6 +11,7 @@ M.ui = {
"onedark",
"gruvchad",
},
italic_comments = false,
-- Enable this only if your terminal has the colorscheme set which nvchad uses
-- For Ex : if you have onedark set in nvchad , set onedark's bg color on your terminal

@ -11,6 +11,7 @@ M.ui = {
"onedark",
"gruvchad",
},
italic_comments = false,
-- Enable this only if your terminal has the colorscheme set which nvchad uses
-- For Ex : if you have onedark set in nvchad , set onedark's bg color on your terminal

@ -41,11 +41,20 @@ fg("IndentBlanklineChar", line)
-- misc --
fg("LineNr", grey)
fg("Comment", grey_fg)
-- Comments
local ui = require("utils").load_config().ui
if ui.italic_comments then
cmd("hi Comment gui=italic guifg=" .. grey_fg)
else
fg("Comment", grey_fg)
end
fg("NvimInternalError", red)
fg("VertSplit", line)
fg("EndOfBuffer", black)
--fg_bg("Visual",light_grey, colors.lightbg)
-- fg_bg("Visual",light_grey, colors.lightbg)
-- Pmenu
bg("Pmenu", one_bg)

Loading…
Cancel
Save