mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(extras): run chezmoi autocmd without configuring chezmoi
This commit is contained in:
parent
af54206a80
commit
0bb9c29b25
1 changed files with 4 additions and 2 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
vim.notify("Hello")
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
-- highlighting for chezmoi files template files
|
-- highlighting for chezmoi files template files
|
||||||
|
|
@ -38,7 +39,7 @@ return {
|
||||||
select = { "<CR>" },
|
select = { "<CR>" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
init = function()
|
||||||
-- run chezmoi edit on file enter
|
-- run chezmoi edit on file enter
|
||||||
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||||
pattern = { os.getenv("HOME") .. "/.local/share/chezmoi/*" },
|
pattern = { os.getenv("HOME") .. "/.local/share/chezmoi/*" },
|
||||||
|
|
@ -46,7 +47,8 @@ return {
|
||||||
vim.schedule(require("chezmoi.commands.__edit").watch)
|
vim.schedule(require("chezmoi.commands.__edit").watch)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
end,
|
||||||
|
config = function(_, opts)
|
||||||
require("chezmoi").setup(opts)
|
require("chezmoi").setup(opts)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue