Add autoclose, tabout nvim autocomplete and Format on save

This commit is contained in:
Zam Kokott
2025-11-12 11:15:38 +00:00
parent 418840eb27
commit 7c0f9e6cca
4 changed files with 73 additions and 2 deletions

11
lua/plugins/tabout.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
{
'abecodes/tabout.nvim',
lazy = false,
config = function()
require('tabout').setup {
tabkey = '<Tab>'
}
end
}
}