This commit is contained in:
Jonathan DeMasi
2025-12-08 17:47:55 -07:00
parent f1cd000c83
commit cc9a0363ed
3 changed files with 23 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
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-night]])
end,
},
}