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

16 lines
366 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 = '' },
},
2024-05-31 14:53:26 +00:00
},
},
}