Dark color scheme for Long Coding Sessions
- π¨ Carefully curated color palette
- π¦ Easy installation with Lazy.nvim
- π Built-in Lualine theme
- π Treesitter compatible
{
"srt0/codescope.nvim",
lazy = false,
priority = 1000,
config = function()
require("codescope").setup({
transparent = false, -- Set to true for transparency
})
vim.cmd.colorscheme("codescope")
end,
}
- Neovim 0.9.0+
- Terminal with true color support (how to verify)
nvim-treesitter
(auto-installed but needs compilation)
If colors don't appear correctly:
- Verify true color support:
:echo has('termguicolors')
should return1
- Check colorscheme is loaded:
:colorscheme
should showcodescope
- Ensure Treesitter parsers are installed:
:TSUpdate
Color palette inspired by Rose Pine and Tokyo Night themes.