tiyns custom color scheme for neovim
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tiyn e50c150428
added yank colors
4 weeks ago
colors initial commit 9 months ago
lua added yank colors 4 weeks ago
LICENSE Initial commit 9 months ago
README.md added modes.nvim and applied refactoring 4 weeks ago
tccs-example.png updated example picture 8 months ago

README.md

Vim TCCS

colorscheme-example

Tiyns custom color scheme (TCCS) for vim is an adaption of Mofiquls vscode.nvim which is based upon colors from tomasisers vim-code-dark. The colors were changed and differ from the original quite a bit. Additionally the support for multiple different flavors was removed. This color scheme is available only in dark mode.

This color scheme uses colors that match the ones of VSCode with strong red and yellow colors for errors and warnings. Additionally a darker background was added for better contrast.

The example picture is taken with all settings available from my dotfiles. It is recommended to take a look into it to get similar highlighting, etc.

Supported Plugins

Following Plugins are especially supported by this color scheme. Other plugins may work as well, but don't are explicitly configured.

Setup

This section supposes Lazy.nvim is used. Other plugin managers can be used too - the setup has to be adapted accordingly then.

Add the following line into the function return require("lazy").setup({}) to load the plugin.

{
  'tiyn/tccs.nvim',
  config = function()
    require('tccs').setup()
    vim.cmd('colorscheme tccs')
  end
},

For LuaLine support add the following lines in in the same way of the previous code block.

{
    'nvim-lualine/lualine.nvim',
    dependencies = {
        'nvim-tree/nvim-web-devicons',
        'tiyn/tccs.nvim',
    },
    opts = {
        options = {
          theme = 'tccs',
        },
    },
}

Options

-- Enable transparent background
transparent = true,

-- Enable italic comment
italic_comments = true,

-- Disable nvim-tree background color
disable_nvimtree_bg = true,

-- Override colors (see ./lua/vscode/colors.lua)
color_overrides = {
    vscLineNumber = '#FFFFFF',
},

-- Override highlight groups (see ./lua/vscode/theme.lua)
group_overrides = {
    -- this supports the same val table as vim.api.nvim_set_hl
    -- use colors from this color scheme by requiring vscode.colors!
    Cursor = { fg=c.vscDarkBlue, bg=c.vscLightGreen, bold=true },
}