From 28098d293d57b0e22856722fcc0fdaac23b5f7d6 Mon Sep 17 00:00:00 2001 From: Ben Shiller Date: Wed, 25 Sep 2024 23:11:10 -0500 Subject: [PATCH] Get rid of italics --- lua/plugins/colors.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lua/plugins/colors.lua b/lua/plugins/colors.lua index 0a0d851..db6c59d 100644 --- a/lua/plugins/colors.lua +++ b/lua/plugins/colors.lua @@ -6,13 +6,16 @@ return { -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. 'folke/tokyonight.nvim', priority = 1000, -- Make sure to load this before all the other start plugins. + opts = { + styles = { + comments = { italic = false }, + keywords = { italic = false }, + }, + }, init = function() -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. vim.cmd.colorscheme 'tokyonight-night' - - -- You can configure highlights by doing something like: - vim.cmd.hi 'Comment gui=none' end, }