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

14 lines
335 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,
2024-06-01 11:00:49 +00:00
theme = 'catppuccin',
2024-06-01 11:08:59 +00:00
section_separators = { left = '', right = '' },
component_separators = { left = '', right = '' },
2024-05-31 14:53:26 +00:00
},
},
}