24 lines
392 B
Lua
24 lines
392 B
Lua
return {
|
|
{
|
|
'catppuccin/nvim',
|
|
name = 'catppuccin',
|
|
priority = 900,
|
|
config = function()
|
|
vim.cmd.colorscheme 'catppuccin'
|
|
end,
|
|
},
|
|
{
|
|
-- Set lualine as statusline
|
|
'nvim-lualine/lualine.nvim',
|
|
-- See `:help lualine.txt`
|
|
opts = {
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = 'auto',
|
|
-- component_separators = '|',
|
|
-- section_separators = '',
|
|
},
|
|
},
|
|
}
|
|
}
|