diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 14:05:46 +0200 |
commit | e56ad93c23674f6677145a1f8933e02c807ba5d0 (patch) | |
tree | 9c073b000118d0d4c933f3010890d500ed277ab7 /lua/no-clown-fiesta/highlight-group/hop.lua | |
parent | 95805b36e4cb70b5c87cdc76e5bd384830a41cbe (diff) |
Remove style field
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/hop.lua')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/hop.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/hop.lua b/lua/no-clown-fiesta/highlight-group/hop.lua index 341c6ff..caa16b2 100644 --- a/lua/no-clown-fiesta/highlight-group/hop.lua +++ b/lua/no-clown-fiesta/highlight-group/hop.lua @@ -2,8 +2,8 @@ local M = {} function M.highlight(palette) return { - HopNextKey = { fg = palette.cyan, style = "bold" }, - HopNextKey1 = { fg = palette.red, style = "bold" }, + HopNextKey = { fg = palette.cyan, bold = true }, + HopNextKey1 = { fg = palette.red, bold = true }, HopNextKey2 = { fg = palette.gray_blue }, HopUnmatched = { fg = palette.gray }, } |