1
0
Fork 1
Dotfiles_nvim/lua/core/package_manager.lua
2024-09-07 17:55:27 +02:00

19 lines
460 B
Lua

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)
local plugins = require('toolchain').plugins
table.insert(plugins, 1, { import = 'editor' })
require('lazy').setup({
spec = plugins,
})