🎨 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,
|
||||
alt_background = false,
|
||||
},
|
||||
dap = {
|
||||
enabled = true,
|
||||
enable_ui = true, -- enable nvim-dap-ui
|
||||
},
|
||||
dap = true,
|
||||
dap_ui = true,
|
||||
dashboard = true,
|
||||
flash = true,
|
||||
headlines = true,
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue