From 9229ef3cf4be2c3f2d3efa798d4c15b112c340cc Mon Sep 17 00:00:00 2001 From: Albert Yu Date: Thu, 10 Apr 2025 16:56:53 -0500 Subject: [PATCH] Use nightfox theme --- init.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index e6aca701..3a667466 100644 --- a/init.lua +++ b/init.lua @@ -914,7 +914,14 @@ require('lazy').setup({ -- 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' + -- vim.cmd.colorscheme 'tokyonight-storm' + end, + }, + { + 'EdenEast/nightfox.nvim', + priority = 1000, + config = function() + vim.cmd.colorscheme 'nightfox' end, },