nvim-config/lua/custom/plugins/lualine.lua

25 lines
566 B
Lua
Raw Normal View History

2024-05-31 14:53:26 +00:00
return {
{
-- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`
opts = {
options = {
icons_enabled = vim.g.have_nerd_font,
theme = 'catppuccin',
section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' },
},
-- Replace filename section with code context
sections = {
lualine_c = {
{
'navic',
color_correction = 'static',
},
},
},
2024-05-31 14:53:26 +00:00
},
},
}