50 lines
1 KiB
Lua
50 lines
1 KiB
Lua
|
return {
|
||
|
root = vim.fn.stdpath "data" .. "/lazy",
|
||
|
spec = "plugins",
|
||
|
lockfile = vim.fn.stdpath "data" .. "/lazy-lock.json",
|
||
|
dev = {
|
||
|
path = "~/Projects/lua/nvim",
|
||
|
},
|
||
|
install = {
|
||
|
colorscheme = { "catppuccin" },
|
||
|
},
|
||
|
ui = {
|
||
|
border = "rounded",
|
||
|
icons = {
|
||
|
cmd = "⌘",
|
||
|
config = "",
|
||
|
event = "",
|
||
|
ft = "",
|
||
|
init = "",
|
||
|
keys = "",
|
||
|
plugin = "",
|
||
|
runtime = "",
|
||
|
source = "",
|
||
|
start = "",
|
||
|
task = "",
|
||
|
lazy = " ",
|
||
|
},
|
||
|
},
|
||
|
diff = {
|
||
|
cmd = "diffview.nvim",
|
||
|
},
|
||
|
checker = {
|
||
|
enabled = true,
|
||
|
frequency = 3600,
|
||
|
},
|
||
|
performance = {
|
||
|
rtp = {
|
||
|
disabled_plugins = {
|
||
|
"gzip",
|
||
|
"matchit",
|
||
|
"matchparen",
|
||
|
"netrwPlugin",
|
||
|
"tarPlugin",
|
||
|
"tohtml",
|
||
|
"tutor",
|
||
|
"zipPlugin",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|