🎨 ux(nvim): lualine separators changed

This commit is contained in:
Sergio Laín 2023-12-08 23:26:22 +01:00
parent 0df0d0c1ee
commit 2e151d75ff
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 5 additions and 9 deletions

View file

@ -19,10 +19,8 @@ return {
dim_context = false,
alt_background = false,
},
dap = {
enabled = true,
enable_ui = true, -- enable nvim-dap-ui
},
dap = true,
dap_ui = true,
dashboard = true,
flash = true,
headlines = true,

View file

@ -1,14 +1,12 @@
return {
"nvim-lualine/lualine.nvim",
opts = function(_, opts)
table.insert(opts.options, {
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
})
opts.options.component_separators = { left = "", right = "" }
opts.options.section_separators = { left = "", right = "" }
opts.sections.lualine_a = { { "mode", icon = "" } }
opts.sections.lualine_y = { { "progress", icon = "", separator = " ", padding = { left = 1, right = 1 } } }
opts.sections.lualine_z = { { "location", icon = "", padding = { left = 1 } } }
opts.sections.lualine_z = { { "location", icon = "", padding = { left = 1, right = 1 } } }
opts.extensions = {
"lazy",
"man",