mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-09 03:03:50 +00:00
14 lines
279 B
Lua
14 lines
279 B
Lua
return {
|
|
-- Set lualine as statusline
|
|
'nvim-lualine/lualine.nvim',
|
|
-- See `:help lualine.txt`
|
|
opts = {
|
|
options = {
|
|
icons_enabled = vim.g.have_nerd_font,
|
|
theme = 'catppuccin',
|
|
component_separators = '|',
|
|
section_separators = ' ',
|
|
},
|
|
},
|
|
}
|