mirror of
https://github.com/itme-brain/nvim.git
synced 2026-05-08 07:00:13 -04:00
fixed lazy
This commit is contained in:
parent
ef4972deb9
commit
87403b7d6f
6 changed files with 96 additions and 27 deletions
|
|
@ -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" } },
|
||||
|
|
|
|||
|
|
@ -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 })
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue