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
+1 -1
View File
@@ -53,6 +53,6 @@
"vim-dadbod-completion": { "branch": "master", "commit": "a8dac0b3cf6132c80dc9b18bef36d4cf7a9e1fe6" }, "vim-dadbod-completion": { "branch": "master", "commit": "a8dac0b3cf6132c80dc9b18bef36d4cf7a9e1fe6" },
"vim-dadbod-ui": { "branch": "master", "commit": "afd07819d8efcefc3317205b855ad4e3513b0011" }, "vim-dadbod-ui": { "branch": "master", "commit": "afd07819d8efcefc3317205b855ad4e3513b0011" },
"volt": { "branch": "main", "commit": "620de1321f275ec9d80028c68d1b88b409c0c8b1" }, "volt": { "branch": "main", "commit": "620de1321f275ec9d80028c68d1b88b409c0c8b1" },
"watchexec.nvim": { "branch": "main", "commit": "ef48cd178f433dda66d7d426abc4218236aa5b40" }, "watchexec.nvim": { "branch": "main", "commit": "f112ac542ef60bfd3f5168559df3229d389a16e5" },
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" } "which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
} }
+6
View File
@@ -2,6 +2,12 @@ return {
"StevanFreeborn/watchexec.nvim", "StevanFreeborn/watchexec.nvim",
lazy = false, lazy = false,
config = function() 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, "WatchexecSuccess", { bg = "#7ec8c0" })
vim.api.nvim_set_hl(0, "WatchexecFailure", { bg = "#d47373" }) vim.api.nvim_set_hl(0, "WatchexecFailure", { bg = "#d47373" })
end, end,