Skip to content

Commit

Permalink
fix(neovim): statuscolumn sign priority
Browse files Browse the repository at this point in the history
  • Loading branch information
olimorris committed Dec 16, 2023
1 parent a260d87 commit 7e590b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/heirline/statuscolumn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ return {

-- Sort by priority
table.sort(signs, function(a, b)
return (a.priority or 0) < (b.priority or 0)
return (a.priority or 0) > (b.priority or 0)
end)

return signs
Expand Down

0 comments on commit 7e590b8

Please sign in to comment.