From 09b356a24cd5c7d7adbee1c817f922353d308501 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Fri, 12 Sep 2025 11:25:14 -0600 Subject: [PATCH] remove colorscheme tokyonight --- lua/plugins/colorscheme.lua | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 lua/plugins/colorscheme.lua diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua deleted file mode 100644 index c7b6240..0000000 --- a/lua/plugins/colorscheme.lua +++ /dev/null @@ -1,12 +0,0 @@ -return { - -- the colorscheme should be available when starting Neovim - { - "folke/tokyonight.nvim", - lazy = false, -- make sure we load this during startup if it is your main colorscheme - priority = 1000, -- make sure to load this before all the other start plugins - config = function() - -- load the colorscheme here - vim.cmd([[colorscheme tokyonight]]) - end, - }, -}