mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
6 lines
174 B
Lua
6 lines
174 B
Lua
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
-- Remove all trailing whitespaces on save
|
|
autocmd('BufWritePre', {
|
|
command = [[:exe 'norm m`' | %s/\s\+$//eg | norm ``]]
|
|
})
|