1
0

Merge Windows 2026

This commit is contained in:
2026-01-03 23:28:17 +01:00
parent e75c184a15
commit 23866e92ab
15 changed files with 195 additions and 161 deletions

View File

@@ -35,13 +35,3 @@ vim.api.nvim_create_autocmd('LspAttach', {
vim.g.netrw_browse_split = 0
vim.g.netrw_winsize = 25
--[[
-- 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
})]] --