nvim/lua/hsta/init.lua
2025-05-08 06:57:37 -04:00

25 lines
547 B
Lua

-- Hunter Stasonis
-- Neovim config
-- Configure
require("hsta.config")
-- Initalize lazy
require("want-lazy")
-- Load plugins
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "hsta.plugins" },
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "default" } },
-- automatically check for plugin updates
checker = { enabled = true },
change_detection = {
enabled = false,
},
})