From 3713cd68b96ac2d1c4750549c488b3bd528ad48e Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 6 Jul 2026 20:52:53 -0500 Subject: [PATCH] feat: update config --- lazy-lock.json | 2 +- lua/plugins/watchexec.lua | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index fe53283..31b70c7 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -53,6 +53,6 @@ "vim-dadbod-completion": { "branch": "master", "commit": "a8dac0b3cf6132c80dc9b18bef36d4cf7a9e1fe6" }, "vim-dadbod-ui": { "branch": "master", "commit": "afd07819d8efcefc3317205b855ad4e3513b0011" }, "volt": { "branch": "main", "commit": "620de1321f275ec9d80028c68d1b88b409c0c8b1" }, - "watchexec.nvim": { "branch": "main", "commit": "ef48cd178f433dda66d7d426abc4218236aa5b40" }, + "watchexec.nvim": { "branch": "main", "commit": "f112ac542ef60bfd3f5168559df3229d389a16e5" }, "which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" } } diff --git a/lua/plugins/watchexec.lua b/lua/plugins/watchexec.lua index a938c2b..7cf6744 100644 --- a/lua/plugins/watchexec.lua +++ b/lua/plugins/watchexec.lua @@ -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, }