Skip to content

Commit

Permalink
fix(conceals): remove atrocious lookin arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Sep 23, 2021
1 parent 641fb6d commit c59b314
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lua/neorg/modules/core/norg/concealer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,12 @@ module.config.public = {

strong = {
enabled = true,
icon = "",
icon = "",
highlight = "NeorgStrongParagraphDelimiter",
query = "(strong_paragraph_delimiter) @icon",
render = function(self, text)
return {
{ "" },
{ string.rep(self.icon, text:len() - 1), self.highlight },
{ string.rep(self.icon, text:len()), self.highlight },
}
end,
},
Expand Down

0 comments on commit c59b314

Please sign in to comment.