fixed lazy

This commit is contained in:
Bryan Ramos 2026-05-02 00:54:09 -04:00
parent ef4972deb9
commit 87403b7d6f
6 changed files with 96 additions and 27 deletions

View file

@ -21,12 +21,15 @@ vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
local writable_lockfile = vim.fn.stdpath("state") .. "/lazy-lock.json"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins" },
},
lockfile = writable_lockfile,
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "anticuus" } },

View file

@ -1,9 +1,8 @@
return {
{
"https://codeberg.org/juanmilkah/anticuus.nvim",
name = "anticuus",
dir = vim.fn.stdpath("config"),
name = "local-colorscheme",
lazy = false,
priority = 1000,
config = function()
local color_group = vim.api.nvim_create_augroup("config_colorscheme", { clear = true })