Skip to content

Commit

Permalink
Improve statusline
Browse files Browse the repository at this point in the history
  • Loading branch information
semanser committed Jan 14, 2024
1 parent 2541507 commit c86cdb1
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions nvim/.config/nvim/lua/plugins/statusline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,21 @@ return {
opts = {
options = {
theme = "catppuccin",
icons_enabled = false,
component_separators = { "", "" },
section_separators = { "", "" },
globalstatus = true,
icons_enabled = true,
globalstatus = false,
},
sections = {
lualine_a = { "" },
lualine_b = { "" },
lualine_b = { "diagnostics" },
lualine_c = {
{
"filename",
path = 1,
path = 0,
},
},
lualine_x = { "" },
lualine_y = { "location" },
lualine_z = { { "diagnostics", sources = { "nvim_diagnostic" } } },
lualine_y = { "searchcount" },
lualine_z = { "location" },
},
},
}

0 comments on commit c86cdb1

Please sign in to comment.