mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
19 lines
581 B
Lua
19 lines
581 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.dap" },
|
|
{ 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 },
|
|
})
|