Reset lazy to standard paths, ignore lazy lockfile from git
This commit is contained in:
parent
fa2fa3843a
commit
a1896925f7
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
lazy-lock.json
|
||||||
.netrwhist
|
.netrwhist
|
||||||
*.swp
|
*.swp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
3
init.lua
3
init.lua
|
@ -15,10 +15,7 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
require("lazy").setup {
|
require("lazy").setup {
|
||||||
root = vim.fn.stdpath "data" .. "/lazy",
|
|
||||||
spec = "plugins",
|
spec = "plugins",
|
||||||
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json",
|
|
||||||
dev = { path = "~/Projects/lua/nvim" },
|
|
||||||
install = { colorscheme = { "tokyonight" } },
|
install = { colorscheme = { "tokyonight" } },
|
||||||
ui = {
|
ui = {
|
||||||
border = "rounded",
|
border = "rounded",
|
||||||
|
|
Loading…
Reference in a new issue