Compare commits

...

2 Commits

Author SHA1 Message Date
23fabbb0a6 README.md: Updated 2026-03-24 02:59:39 +01:00
9c273af4a6 added support for file-renamer.nvim 2026-03-24 02:52:30 +01:00
2 changed files with 8 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
# Vim TCCS
# tccs.nvim
![colorscheme-example](tccs-example.png)
Tiyns custom color scheme (TCCS) for vim is an adaption of
tiyns custom color scheme (tccs) for NeoVIM is an adaption of
[Mofiquls vscode.nvim](https://github.com/Mofiqul/vscode.nvim) which is based upon colors from
[tomasisers vim-code-dark](https://github.com/tomasiser/vim-code-dark).
The colors were changed and differ from the original quite a bit.
@@ -25,6 +25,7 @@ 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)
- [GitSigns](https://github.com/lewis6991/gitsigns.nvim)
- [file-renamer.nvim](https://github.com/tiyn/file-renamer.nvim)
- [LSP-Signature](https://github.com/ray-x/lsp_signature.nvim)
- [Lualine](https://github.com/nvim-lualine/lualine.nvim)
- [Modes.nvim](https://github.com/mvllow/modes.nvim)

View File

@@ -323,6 +323,11 @@ theme.set_highlights = function(opts)
hl(0, "ResolveTheirsSection", { bg = c.modified_bg })
hl(0, "ResolveAncestorSection", { bg = c.removed_bg })
-- file-renamer.nvim
hl(0, "RenameComment", { fg = c.comment, italic = opts.italic_comments })
hl(0, "RenameDirectory", { fg = c.constant })
hl(0, "RenameFile", { fg = c.func })
end
return theme