Improve file structure

This commit is contained in:
2026-01-14 20:10:46 +01:00
parent c95ed52685
commit 6ce99540d1
5 changed files with 60 additions and 44 deletions

View File

@ -18,6 +18,13 @@ vim.opt.rtp:prepend(lazypath)
-- Initialize lazy.nvim
require("lazy").setup({
-- plugins will go here
{
"folke/tokyonight.nvim",
lazy = false, -- load immediately
priority = 1000, -- load before other plugins
config = function()
vim.cmd("colorscheme tokyonight")
end,
},
})