🎨 ux(nvim): lualine separators changed
This commit is contained in:
parent
0df0d0c1ee
commit
2e151d75ff
2 changed files with 5 additions and 9 deletions
|
@ -19,10 +19,8 @@ return {
|
||||||
dim_context = false,
|
dim_context = false,
|
||||||
alt_background = false,
|
alt_background = false,
|
||||||
},
|
},
|
||||||
dap = {
|
dap = true,
|
||||||
enabled = true,
|
dap_ui = true,
|
||||||
enable_ui = true, -- enable nvim-dap-ui
|
|
||||||
},
|
|
||||||
dashboard = true,
|
dashboard = true,
|
||||||
flash = true,
|
flash = true,
|
||||||
headlines = true,
|
headlines = true,
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
return {
|
return {
|
||||||
"nvim-lualine/lualine.nvim",
|
"nvim-lualine/lualine.nvim",
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
table.insert(opts.options, {
|
opts.options.component_separators = { left = "", right = "" }
|
||||||
component_separators = { left = "", right = "" },
|
opts.options.section_separators = { left = "", right = "" }
|
||||||
section_separators = { left = "", right = "" },
|
|
||||||
})
|
|
||||||
|
|
||||||
opts.sections.lualine_a = { { "mode", icon = "" } }
|
opts.sections.lualine_a = { { "mode", icon = "" } }
|
||||||
opts.sections.lualine_y = { { "progress", icon = "", separator = " ", padding = { left = 1, right = 1 } } }
|
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 = {
|
opts.extensions = {
|
||||||
"lazy",
|
"lazy",
|
||||||
"man",
|
"man",
|
||||||
|
|
Loading…
Add table
Reference in a new issue