1
0

Merge Windows config

This commit is contained in:
2024-09-26 14:46:07 +02:00
parent 12b89714dc
commit 71f08e66aa
6 changed files with 162 additions and 59 deletions

View File

@@ -35,3 +35,15 @@ vim.api.nvim_create_autocmd('LspAttach', {
end,
})
--[[
-- Run zig test on save
-- TODO: fix vim.cmd call
-- TODO: only do this when a zig test file is open
vim.api.nvim_create_autocmd('BufWritePost' , {
callback = function ()
vim.cmd{cmd = '!zig' , args= {'test', vim.fn.expand('%')} }
end
})]]--