feat: add watchexec plugin

This commit is contained in:
Stevan Freeborn
2026-07-06 20:27:14 -05:00
parent 93dd5b9d07
commit 0499301fef
2 changed files with 15 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
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,
}