7 lines
158 B
Lua
7 lines
158 B
Lua
vim.o.textwidth = 80
|
|
vim.o.expandtab = true
|
|
|
|
-- remove white spaces at end of line
|
|
vim.api.nvim_create_autocmd({'BufWritePre'}, {command = '%s;\\s\\+$;;e'})
|
|
|