Simplify statusline, support tabs, add more languages

This commit is contained in:
agryphus 2025-09-03 19:06:21 -04:00
parent c28dd3e9a9
commit bb94a399de
11 changed files with 166 additions and 109 deletions

14
after/plugin/lualine.lua Normal file
View file

@ -0,0 +1,14 @@
require("lualine").setup({
sections = {
lualine_a = {'mode'},
lualine_b = {'tabs', 'filename'},
lualine_c = {'branch', 'diff', 'diagnostics'},
lualine_x = {'encoding', 'filetype'},
lualine_y = {'progress'},
lualine_z = {'location'}
},
})
vim.cmd[[set showtabline=0]]
vim.cmd[[set noshowmode]]