Compare commits

..

No commits in common. "fa75ae924ac0131c6f4c68b9ad4d18e0a8f5e14d" and "7664ee3fff0a1fdd92ce8f424bd68cbf5fba5f1d" have entirely different histories.

3 changed files with 1 additions and 8 deletions

View File

@ -22,20 +22,17 @@ It is recommended to take a look into it to get similar highlighting, etc.
Following Plugins are especially supported by this color scheme. Following Plugins are especially supported by this color scheme.
Other plugins may work as well, but don't are explicitly configured. Other plugins may work as well, but don't are explicitly configured.
- [Aerial.NVIM](https://github.com/stevearc/aerial.nvim/)
- [Diffview](https://github.com/sindrets/diffview.nvim) - [Diffview](https://github.com/sindrets/diffview.nvim)
- [GitSigns](https://github.com/lewis6991/gitsigns.nvim) - [GitSigns](https://github.com/lewis6991/gitsigns.nvim)
- [LSP-Signature](https://github.com/ray-x/lsp_signature.nvim) - [LSP-Signature](https://github.com/ray-x/lsp_signature.nvim)
- [Lualine](https://github.com/nvim-lualine/lualine.nvim) - [Lualine](https://github.com/nvim-lualine/lualine.nvim)
- [NavBuddy](https://github.com/SmiteshP/nvim-navbuddy) - [NavBuddy](https://github.com/SmiteshP/nvim-navbuddy)
- [NVIM CMP](https://github.com/hrsh7th/nvim-cmp) - [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 Scrollbar](https://github.com/petertriho/nvim-scrollbar)
- [NVIM Telescope](https://github.com/nvim-telescope/telescope.nvim) - [NVIM Telescope](https://github.com/nvim-telescope/telescope.nvim)
- [NVIM Tree](https://github.com/nvim-tree/nvim-tree.lua) - [NVIM Tree](https://github.com/nvim-tree/nvim-tree.lua)
- [NVIM Treesitter](https://github.com/nvim-treesitter/nvim-treesitter) - [NVIM Treesitter](https://github.com/nvim-treesitter/nvim-treesitter)
- [NVIM Ufo](https://github.com/kevinhwang91/nvim-ufo) - [NVIM Ufo](https://github.com/kevinhwang91/nvim-ufo)
- [VIM Illuminate](https://github.com/RRethy/vim-illuminate)
- [Wilder](https://github.com/gelguy/wilder.nvim) - [Wilder](https://github.com/gelguy/wilder.nvim)
## Setup ## Setup

View File

@ -12,7 +12,7 @@ colors.get_colors = function()
accent = "#C586C0", accent = "#C586C0",
accent_alt = "#608B4E", accent_alt = "#608B4E",
ui = "#4D5566", ui = "#4D5566",
color_column = "#1C1C1C", color_column = "#772222",
popup = "#272727", popup = "#272727",
border = "#242A35", border = "#242A35",
border_alt = "#393F4D", border_alt = "#393F4D",

View File

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