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
This commit is contained in:
parent
c64e0469a4
commit
8346f94fde
1 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
vim.api.nvim_create_autocmd({"BufWritePre"}, {
|
||||
group = vim.api.nvim_create_augroup("Default", {}),
|
||||
pattern = "*",
|
||||
command = [[%s/\s\+$//e]],
|
||||
})
|
||||
-- vim.api.nvim_create_autocmd({"BufWritePre"}, {
|
||||
-- group = vim.api.nvim_create_augroup("Default", {}),
|
||||
-- pattern = "*",
|
||||
-- command = [[%s/\s\+$//e]],
|
||||
-- })
|
||||
|
|
|
|||
Loading…
Reference in a new issue