mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(chezmoi): typo
This commit is contained in:
parent
f94a0591b3
commit
b20fb710c1
1 changed files with 4 additions and 4 deletions
|
|
@ -68,15 +68,15 @@ return {
|
|||
"nvimdev/dashboard-nvim",
|
||||
optional = true,
|
||||
opts = function(_, opts)
|
||||
local projects = {
|
||||
local chezmoi = {
|
||||
action = pick_chezmoi,
|
||||
desc = " Config",
|
||||
icon = "",
|
||||
key = "c",
|
||||
}
|
||||
|
||||
projects.desc = projects.desc .. string.rep(" ", 43 - #projects.desc)
|
||||
projects.key_format = " %s"
|
||||
chezmoi.desc = chezmoi.desc .. string.rep(" ", 43 - #chezmoi.desc)
|
||||
chezmoi.key_format = " %s"
|
||||
|
||||
-- remove lazyvim config property
|
||||
for i = #opts.config.center, 1, -1 do
|
||||
|
|
@ -85,7 +85,7 @@ return {
|
|||
end
|
||||
end
|
||||
|
||||
table.insert(opts.config.center, 5, projects)
|
||||
table.insert(opts.config.center, 5, chezmoi)
|
||||
end,
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue