Compare commits

..

7 Commits

Author SHA1 Message Date
fa75ae924a added aerial as working 2023-12-12 02:45:18 +01:00
6b6e8dc745 added illuminate as working 2023-12-12 02:10:40 +01:00
5033d19610 added cursorword colors 2023-12-12 02:02:35 +01:00
0c583f1620 added cursorword colors 2023-12-12 02:01:18 +01:00
7f6fa7e9b1 removed barbecue colors 2023-12-12 01:54:17 +01:00
f72a971746 added barbecue colors 2023-12-12 01:52:34 +01:00
6bee46278c colors: changed colorcolumns 2023-12-12 00:18:49 +01:00
3 changed files with 8 additions and 1 deletions

View File

@ -22,17 +22,20 @@ 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 = "#772222", color_column = "#1C1C1C",
popup = "#272727", popup = "#272727",
border = "#242A35", border = "#242A35",
border_alt = "#393F4D", border_alt = "#393F4D",

View File

@ -282,6 +282,10 @@ 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