feat: update config

This commit is contained in:
Stevan Freeborn
2026-07-06 20:52:53 -05:00
parent 0499301fef
commit 3713cd68b9
2 changed files with 13 additions and 7 deletions
+12 -6
View File
@@ -1,8 +1,14 @@
return {
"StevanFreeborn/watchexec.nvim",
lazy = false,
config = function()
vim.api.nvim_set_hl(0, "WatchexecSuccess", { bg = "#7ec8c0" })
vim.api.nvim_set_hl(0, "WatchexecFailure", { bg = "#d47373" })
end,
"StevanFreeborn/watchexec.nvim",
lazy = false,
config = function()
require("watchexec").setup({
indicator = {
padding = { x = 2, y = 3 },
},
})
vim.api.nvim_set_hl(0, "WatchexecSuccess", { bg = "#7ec8c0" })
vim.api.nvim_set_hl(0, "WatchexecFailure", { bg = "#d47373" })
end,
}