From e76fe9dc6588fc455b5f8d6c22e8b6a67b2cef3a Mon Sep 17 00:00:00 2001 From: Simon Lasbrugnas Date: Wed, 13 Nov 2024 11:30:08 +0100 Subject: [PATCH] style: set Comment highlight to regular instead of italic --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 05c8de9..3e7df49 100644 --- a/init.lua +++ b/init.lua @@ -22,3 +22,6 @@ require("lazy").setup({ import = "custom/plugins" }, { }) vim.cmd([[colorscheme mellow]]) + +-- Modify Comment highlight group to remove italics +vim.cmd([[hi Comment cterm=NONE gui=NONE]])