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
5 lines
171 B
Lua
5 lines
171 B
Lua
-- vim.api.nvim_create_autocmd({"BufWritePre"}, {
|
|
-- group = vim.api.nvim_create_augroup("Default", {}),
|
|
-- pattern = "*",
|
|
-- command = [[%s/\s\+$//e]],
|
|
-- })
|