The default colorscheme used by AstroNvim an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins
- Automatic plugin detection and highlight setting (Packer and lazy.nvim supported)
- Override or modify EVERYTHING.
- Global & Theme specific overrides
- Vim terminal colors
- Heirline highlights
- Lualine support
colorscheme astrodark
require("astrotheme").setup({
palette = "astrodark", -- String of the default palette to use when calling `:colorscheme astrotheme`
termguicolors = true, -- Bool value, toggles if termguicolors are set by AstroTheme.
terminal_color = true, -- Bool value, toggles if terminal_colors are set by AstroTheme.
plugin_default = "auto", -- Sets how all plugins will be loaded
-- "auto": Uses lazy / packer enabled plugins to load highlights.
-- true: Enables all plugins highlights.
-- false: Disables all plugins.
plugins = { -- Allows for individual plugin overides using plugin name and value from above.
["bufferline.nvim"] = false,
},
palettes = {
global = { -- Globaly accessible palettes, theme palettes take priority.
my_grey = "#ebebeb",
my_color = "#ffffff"
},
astrodark = { -- Extend or modify astrodarks palette colors
red = "#800010", -- Overrides astrodarks red color
my_color = "#000000" -- Overrides global.my_color
},
},
highlights = {
global = { -- Add or modify hl groups globaly, theme specific hl groups take priority.
modify_hl_groups = function(hl, c)
hl.PluginColor4 = {fg = c.my_grey, bg = c.none }
end,
["@String"] = {fg = "#ff00ff", bg = "NONE"},
},
astrodark = {
-- first parameter is the highlight table and the second parameter is the color palette table
modify_hl_groups = function(hl, c) -- modify_hl_groups function allows you to modify hl groups,
hl.Comment.fg = c.my_color
hl.Comment.italic = true
end,
["@String"] = {fg = "#ff00ff", bg = "NONE"},
},
},
})
- Neovim >= 0.8
- aerial.nvim
- beacon.nvim
- bufferline.nvim
- dashboard-nvim
- gitsigns.nvim
- hop.nvim
- indent_blankline.nvim
- lightspeed.nvim
- lualine
- neo-tree.nvim
- nvim-cmp
- nvim-dap-ui
- nvim-notify
- nvim-tree.lua
- nvim-treesitter
- nvim-ts-rainbow
- nvim-ts-rainbow2
- nvim-web-devicons
- telescope.nvim
- vimwiki
- which-key.nvim
Lazy:
{ "AstroNvim/astrotheme" }
Packer:
use "AstroNvim/astrotheme"