parent
7f90ace239
commit
46e44234a4
|
@ -23,5 +23,11 @@ autocmd('BufEnter', {
|
||||||
command = 'set fo-=c fo-=r fo-=o'
|
command = 'set fo-=c fo-=r fo-=o'
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Remove whitespace on save
|
||||||
|
autocmd('BufWritePre', {
|
||||||
|
pattern = '*',
|
||||||
|
command = ":%s/\\s\\+$//e"
|
||||||
|
})
|
||||||
|
|
||||||
-- load statusline
|
-- load statusline
|
||||||
vim.opt.statusline = "%!v:lua.require'ui.statusline'.run()"
|
vim.opt.statusline = "%!v:lua.require'ui.statusline'.run()"
|
||||||
|
|
Loading…
Reference in New Issue