Files
nvim-config/lua/plugins/watchexec.lua
T

15 lines
309 B
Lua
Raw Normal View History

2026-07-06 20:27:14 -05:00
return {
2026-07-06 20:52:53 -05:00
"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,
2026-07-06 20:27:14 -05:00
}