2022-04-02 04:02:22 +00:00
|
|
|
-- vim: shiftwidth=2
|
2021-11-16 11:55:36 +00:00
|
|
|
|
2023-10-27 11:29:23 +00:00
|
|
|
-- Bootstrapping for the package 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", -- latest stable release
|
|
|
|
lazypath,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
|
2023-10-27 11:33:17 +00:00
|
|
|
require("settings").setup()
|
2022-04-04 14:00:31 +00:00
|
|
|
require("lsp-user-config").setup()
|
2023-10-27 11:33:17 +00:00
|
|
|
require("lazy").setup("plugins")
|