mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
18 lines
549 B
Lua
18 lines
549 B
Lua
require("plugins.lazy-nvim")
|
|
|
|
-- Setup lazy.nvim
|
|
require("lazy").setup({
|
|
spec = {
|
|
-- import your plugins
|
|
{ import = "plugins.appearance" },
|
|
{ import = "plugins.completion" },
|
|
{ import = "plugins.fileutils" },
|
|
{ import = "plugins.lsp" },
|
|
{ import = "plugins.edit" },
|
|
{ import = "plugins.misc" },
|
|
},
|
|
-- Configure any other settings here. See the documentation for more details.
|
|
-- colorscheme that will be used when installing plugins.
|
|
-- automatically check for plugin updates
|
|
checker = { enabled = true },
|
|
})
|