From 165533ddccbe36ab05ede3c17c5843c1187072ab Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 22 Jan 2025 11:54:05 -0800 Subject: [PATCH] Fix ghostty theme name --- neovim/lua/lazy/colorschemes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/lua/lazy/colorschemes.lua b/neovim/lua/lazy/colorschemes.lua index 8918825..fe674ec 100644 --- a/neovim/lua/lazy/colorschemes.lua +++ b/neovim/lua/lazy/colorschemes.lua @@ -8,7 +8,7 @@ return { local term_program = vim.env.TERM_PROGRAM local term_profile = vim.env.TERM_PROFILE - if term_program == "iTerm.app" or term_profile == "wombat-iterm" then + if term_program == "iTerm.app" or term_profile == "Wombat-iTerm" then opts.ansi_colors_name = "iterm2" elseif term_program == "ghostty" then opts.ansi_colors_name = "ghostty"