nvim/ftplugin/lua.lua
2022-10-18 18:46:58 +02:00

6 lines
136 B
Lua

vim.o.textwidth = 100
-- remove white spaces at end of line
vim.api.nvim_create_autocmd({'BufWritePre'}, {command = '%s;\\s\\+$;;e'})