Files
watchexec.nvim/plugin/watchexec.lua
T

10 lines
173 B
Lua
Raw Normal View History

2026-07-04 08:46:05 -05:00
if vim.g.loaded_watchexec then
return
end
vim.g.loaded_watchexec = 1
vim.api.nvim_create_user_command("SayHello", function()
require("watchexec").say_hello()
end, {})