blob: 1127fb380fd18ee81bc86b83bda5f5ecd5e6b79b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- UI customizations without plugins.
local statusline = {
' %t',
'%r',
'%m',
'%=',
'%{&filetype}',
' %2p%%',
' %3l:%-2c '
}
vim.o.statusline = table.concat(statusline, '')
|