aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:52:57 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:52:57 +0100
commit0efbfdd076af68d0b8b706b984f43d38a90d6ac9 (patch)
treec40641f2fbea0b4c84f73d2a00bbaf56fdccb14f /home/.config
parent32315aae730744e9ab037c7e7b776e9fb3834388 (diff)
downloaddotfiles-0efbfdd076af68d0b8b706b984f43d38a90d6ac9.tar.gz
dotfiles-0efbfdd076af68d0b8b706b984f43d38a90d6ac9.tar.bz2
dotfiles-0efbfdd076af68d0b8b706b984f43d38a90d6ac9.zip
fix(nvim): split lualine searchcount/selectioncount into separate components
Was a single string "searchcount, selectioncount" which lualine treated as one nonexistent component name.
Diffstat (limited to 'home/.config')
-rw-r--r--home/.config/nvim/lua/custom/plugins/ui.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.config/nvim/lua/custom/plugins/ui.lua b/home/.config/nvim/lua/custom/plugins/ui.lua
index ffd621e..0028759 100644
--- a/home/.config/nvim/lua/custom/plugins/ui.lua
+++ b/home/.config/nvim/lua/custom/plugins/ui.lua
@@ -58,7 +58,7 @@ return {
lualine_a = { "filetype", { "filename", path = 1 } },
lualine_b = { "%l/%L:%c:%o" },
lualine_c = { "diff" },
- lualine_x = { "searchcount, selectioncount" },
+ lualine_x = { "searchcount", "selectioncount" },
lualine_y = { "overseer", "copilot" },
lualine_z = { "diagnostics" },
},