1
0
Fork 0

xrdb autocmd for nvim

This commit is contained in:
Luca Bilke 2024-02-05 17:32:31 +01:00
parent 8671663e1a
commit dc15116f16

View file

@ -55,6 +55,13 @@ local autocmds = {
command = "!shortcuts"
},
},
{ -- Trigger xrdb
"BufWritePost",
{
pattern = { "xresources" },
command = "!xrdb %"
},
},
}
vim.api.nvim_create_augroup("user_config", { clear = true })