initial commit

This commit is contained in:
2026-01-20 15:07:23 +02:00
commit 09c8a00eb1
10 changed files with 401 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
local augroup = vim.api.nvim_create_augroup("UserConfig", { clear = true })
-- Go uses tabs by convention
vim.api.nvim_create_autocmd("FileType", {
group = augroup,
pattern = "go",
callback = function()
vim.opt_local.expandtab = false
vim.opt_local.tabstop = 4
vim.opt_local.shiftwidth = 4
end,
})