mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
22 lines
589 B
Lua
22 lines
589 B
Lua
-- Entry point of the plugin manager
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
vim.fn.system({
|
|
"git",
|
|
"clone",
|
|
"--filter=blob:none",
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
"--branch=stable",
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
require("lazy").setup({
|
|
{ import = "plugins.appearance" },
|
|
{ import = "plugins.completion" },
|
|
{ import = "plugins.fileutils" },
|
|
{ import = "plugins.lsp" },
|
|
{ import = "plugins.syntax" },
|
|
{ import = "plugins.misc" },
|
|
})
|