2023-03-02 23:26:30 +00:00
|
|
|
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)
|
|
|
|
|
|
|
|
require('mappings')
|
2023-02-28 02:27:44 +00:00
|
|
|
require('options')
|
2023-03-02 23:53:24 +00:00
|
|
|
require("lazy").setup("plugins")
|
2023-02-28 02:27:44 +00:00
|
|
|
require('lsp_settings')
|
|
|
|
require('autocmds')
|