feat: updated plugins and editor configuration

This commit is contained in:
David Ibia
2024-01-01 21:03:31 +01:00
parent 2537f12e0c
commit e454b4a8b9
36 changed files with 497 additions and 195 deletions

View File

@@ -1,14 +1,29 @@
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,
})
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("lazy").setup("absolute.plugins")
require("lazy").setup({
{ import = "absolute.plugins" }
}, {
install = {
colorscheme = { "nightfly" },
},
checker = {
enabled = true,
notify = false,
},
change_detection = {
notify = false
}
})
require("absolute.after.colorscheme");