added cursorword colors

master
tiyn 11 months ago
parent 7f6fa7e9b1
commit 0c583f1620

@ -28,6 +28,7 @@ Other plugins may work as well, but don't are explicitly configured.
- [Lualine](https://github.com/nvim-lualine/lualine.nvim)
- [NavBuddy](https://github.com/SmiteshP/nvim-navbuddy)
- [NVIM CMP](https://github.com/hrsh7th/nvim-cmp)
- [NVIM Cursorword](https://github.com/xiyaowong/nvim-cursorword)
- [NVIM Scrollbar](https://github.com/petertriho/nvim-scrollbar)
- [NVIM Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [NVIM Tree](https://github.com/nvim-tree/nvim-tree.lua)

@ -282,6 +282,10 @@ theme.set_highlights = function(opts)
hl(0, 'NvimTreeGitMerge', { fg = c.modified_fg })
hl(0, 'NvimTreeGitDirty', { fg = c.modified_fg })
hl(0, 'NvimTreeGitNew', { fg = c.added_fg })
-- nvim-cursorword
hl(0, 'CursorWord', { fg = c.tag, underline = true })
end
return theme

Loading…
Cancel
Save