You've already forked dotfiles
Disabling nvim-lint and calls to cfn-lint for now. Found and removed the issue with completion causing odd failures on expansion.
26 lines
725 B
Lua
26 lines
725 B
Lua
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'
|
||
},
|
||
}
|