commit b48753ce5e8550bfc3280c43d6b6957d1d80aa04
parent 84f8acc56e9dfd4471e7968958f49607a90a7247
Author: Milutin Popovic <milutin@popovic.xyz>
Date: Wed, 11 Mar 2026 15:50:32 +0000
bump
Diffstat:
1 file changed, 0 insertions(+), 30 deletions(-)
diff --git a/.config/nvim/lua/config/autocmd.lua b/.config/nvim/lua/config/autocmd.lua
@@ -20,33 +20,3 @@ autocmd({'BufWritePost'}, {
pattern = vim.fn.expand('~') .. '/.config/X/Xresources.mon',
command = '!xrdb %',
})
-
--- Convert two spaces to tabs in router folder
-autocmd({'BufWritePre'}, {
- pattern = '*/oari/*.ts',
- callback = function()
- vim.cmd([[%s/ /\t/ge]])
- end,
-})
-
--- Convert tabs to two spaces on buf enter
-autocmd({'BufEnter'}, {
- pattern = '*/oari/*.ts',
- callback = function()
- vim.cmd([[%s/\t/ /ge]])
- end,
-})
-
--- Convert double qotes to single qotes on save
-autocmd({'BufWritePre'}, {
- pattern = '*/oari/*.ts',
- callback = function()
- vim.cmd([[%s/"/'/ge]])
- end,
-})
-
-
-
-
-
-