mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-13 20:43:49 +00:00
14 lines
273 B
Lua
14 lines
273 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 = 'auto',
|
|
component_separators = '|',
|
|
section_separators = ' ',
|
|
},
|
|
},
|
|
}
|