added cursorword colors

This commit is contained in:
tiyn 2023-12-12 02:01:18 +01:00
parent 7f6fa7e9b1
commit 0c583f1620
2 changed files with 5 additions and 0 deletions

View File

@ -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)

View File

@ -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