Files
dotfiles/nvim/lua/plugins/lualine.lua
FaultyBranches dd63dfd57e fix: Removing several bits that were superfluous or were causing issues.
Disabling nvim-lint and calls to cfn-lint for now. Found and removed the issue with
completion causing odd failures on expansion.
2026-04-07 08:03:21 -05:00

26 lines
725 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
return {
'nvim-lualine/lualine.nvim',
config = function()
require('lualine').setup {
-- options = {
-- component_separators = { left = '\\', right = '/' },
-- component_separators = { left = '', right = '' },
-- section_separators = { left = '', right = '' },
-- globalstatus = true,
-- theme = 'gruvbox',
-- },
tabline = {
lualine_a = {
'tabs',
},
lualine_z = {
'buffers',
}
}
}
end,
dependencies = {
'nvim-tree/nvim-web-devicons'
},
}