lazy loading

This commit is contained in:
Oliver Ladner 2024-01-24 08:28:20 +01:00
commit ba56bab172
8 changed files with 77 additions and 67 deletions

View file

@ -1,15 +1,17 @@
-- status line like vim-airline
return {
"nvim-lualine/lualine.nvim",
opts = {
options = {
icons_enabled = true,
theme = 'auto',
--component_separators = '⋮',
component_separators = '',
--section_separators = { left = '', right = '' },
--section_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
},
},
return {
"nvim-lualine/lualine.nvim",
lazy = true,
event = { "BufReadPre", "BufNewFile" },
opts = {
options = {
icons_enabled = true,
theme = "auto",
--component_separators = '⋮',
component_separators = "",
--section_separators = { left = '', right = '' },
--section_separators = { left = '', right = '' },
section_separators = { left = "", right = "" },
},
},
}