nvim/lua/plugins/lualine.lua
RingOfStorms (Joshua Bell) 42a3ec0172 Working on lsp
2023-06-12 00:13:14 -05:00

18 lines
478 B
Lua

return {
"nvim-lualine/lualine.nvim",
opts = {
options = {
theme = "codedark",
section_separators = { left = '', right = '' },
component_separators = '|',
},
sections = {
lualine_a = {'mode'},
lualine_b = {'branch', 'diff', 'diagnostics'},
lualine_c = {'filename'},
lualine_x = {'encoding', 'filetype', 'filesize'},
lualine_y = {'searchcount', 'selectioncount'},
lualine_z = {'location'},
},
}
}