diff options
| author | triethyl <triethylammonium@pm.me> | 2025-07-29 19:57:20 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-07-29 19:57:20 -0400 |
| commit | f094608985b80cc279cbc4700b23c9b1381fb3c4 (patch) | |
| tree | 9b25c4278d229764a881455ac21ffeccabc87dbd /pkgs/custom-neovim/config | |
| parent | a148e3744f9a066d2f222f44662b3e9886dae78c (diff) | |
neovim: add ui file
Diffstat (limited to 'pkgs/custom-neovim/config')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/ui.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/ui.lua b/pkgs/custom-neovim/config/lua/ui.lua new file mode 100644 index 0000000..1127fb3 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/ui.lua @@ -0,0 +1,13 @@ +-- UI customizations without plugins. + +local statusline = { + ' %t', + '%r', + '%m', + '%=', + '%{&filetype}', + ' %2p%%', + ' %3l:%-2c ' +} + +vim.o.statusline = table.concat(statusline, '') |
