diff options
Diffstat (limited to '.config/nvim/lua/statusline.lua')
-rw-r--r-- | .config/nvim/lua/statusline.lua | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/.config/nvim/lua/statusline.lua b/.config/nvim/lua/statusline.lua deleted file mode 100644 index facc04c..0000000 --- a/.config/nvim/lua/statusline.lua +++ /dev/null @@ -1,17 +0,0 @@ --- Lua statusline imported into the main init - --- Line table Left-to-Right -local stl = { - ' [%n] ', -- Buffer - ' %f ', -- Filename with Path - ' %m%r%w ', -- Modified flag - ' (%{&filetype})', -- VIM Filetype - " %{''.(&fenc!=''?&fenc:&enc).''}", -- File Encoding - ' %{(&bomb?\",BOM\":\"\")}', -- "UCS-BOM" /bomb/ detection - ' %=', -- Separator - ' row:%l/%L (%03p%%)', -- Formatted row, then percentage of file - ' col:%03c ', -- Formatted column -} --- Generate the statusline -vim.o.statusline = table.concat(stl) - |