nvim/lua/config/autocmds.lua
Simon Lasbrugnas 8346f94fde
chore: disable trailing space autocmds
I don't want my commits to be huge just because there are a bunch of
trailing spaces at the end of some lines, and as it is the case in the
company I'm working at right now, I have decided to disable it for now
2024-01-22 00:41:59 +01:00

5 lines
171 B
Lua

-- vim.api.nvim_create_autocmd({"BufWritePre"}, {
-- group = vim.api.nvim_create_augroup("Default", {}),
-- pattern = "*",
-- command = [[%s/\s\+$//e]],
-- })