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