update
This commit is contained in:
parent
f5daf0ad68
commit
0e500b7d8f
29 changed files with 687 additions and 694 deletions
25
lua/hsta/init.lua
Normal file
25
lua/hsta/init.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
-- 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,
|
||||
},
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue