diff options
| author | Ellison <ellisonleao@gmail.com> | 2021-02-10 11:15:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-10 11:15:41 -0300 |
| commit | ac48299e24a37ad7d8393f1c4e69b99a50cee994 (patch) | |
| tree | 0bf703bdfd2d7550c4599863244ee0440e0ef2f3 /lua | |
| parent | d755ce15d44c0c36cc0e166be765d81c42faac9e (diff) | |
| parent | 74801de054df95e6ac0a2c39e6ca8bfe79006ca2 (diff) | |
| download | gruvbox-ac48299e24a37ad7d8393f1c4e69b99a50cee994.tar.gz gruvbox-ac48299e24a37ad7d8393f1c4e69b99a50cee994.tar.xz | |
Merge pull request #5 from stvhuang/patch-2
Fix hls_cursor -> hls_highlight
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/gruvbox.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/gruvbox.lua b/lua/gruvbox.lua index 764e8ca..1fa7b62 100644 --- a/lua/gruvbox.lua +++ b/lua/gruvbox.lua @@ -90,8 +90,8 @@ if vim.g.gruvbox_hls_cursor ~= nil then end local hls_highlight = yellow -if vim.g.gruvbox_hls_cursor ~= nil then - hls_cursor = colors[vim.g.gruvbox_hls_highlight] +if vim.g.gruvbox_hls_highlight ~= nil then + hls_highlight = colors[vim.g.gruvbox_hls_highlight] end local number_column |
