You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
524 B
Lua

local augroup = vim.api.nvim_create_augroup
local autocmd = vim.api.nvim_create_autocmd
local function dwm()
local group = augroup('dwm', {})
autocmd({'BufWritePost'}, {
group = group,
pattern = '*/suckless/*/{*.c,*.h}',
callback = function()
local make_cmd = 'make && make install'
-- if vim.env.STREAMING ~= nil then
-- make_cmd = 'make && make install'
-- end
vim.cmd("AsyncRun " .. make_cmd)
end
})
end
dwm()