From 7dbfca633821ada2ebf4df91915400d657236a9d Mon Sep 17 00:00:00 2001 From: Taken Date: Wed, 11 Oct 2023 09:24:06 +0200 Subject: [PATCH] Added new colorsheme Signed-off-by: Taken --- lua/taken/plugins/colors.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/taken/plugins/colors.lua b/lua/taken/plugins/colors.lua index 99a6725..fb751f6 100644 --- a/lua/taken/plugins/colors.lua +++ b/lua/taken/plugins/colors.lua @@ -1,4 +1,21 @@ return { + { + "EdenEast/nightfox.nvim", + priority = 1000, + event = "User ThemeSwitcher", + config = function() + local nightfox = require("nightfox") + + nightfox.setup({ + options = { + styles = { + comments = "italic", + functions = "italic", + }, + }, + }) + end, + }, { "rose-pine/neovim", name = "rose-pine",