aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/after/ftplugin/sxhkdrc.lua
blob: 327c5a07f7d0c596483e9e15677cbef68f22b60c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
vim.bo.commentstring = "# %s"

vim.api.nvim_create_autocmd(
  "BufWritePost",
  {
    group = vim.api.nvim_create_augroup("sxhkd", { clear = true }),
    buffer = 0,
    command = "!pkill --signal SIGUSR1 sxhkd",
  }
)