use astratheme
This commit is contained in:
32
lua/plugins/astrodark.lua
Normal file
32
lua/plugins/astrodark.lua
Normal file
@@ -0,0 +1,32 @@
|
||||
return {
|
||||
'AstroNvim/astrotheme',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
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.
|
||||
-- ['lualine'] = true,
|
||||
},
|
||||
|
||||
palettes = {
|
||||
global = {
|
||||
},
|
||||
astrodark = {
|
||||
},
|
||||
},
|
||||
})
|
||||
vim.cmd('colorscheme astrodark')
|
||||
end,
|
||||
enabled = true
|
||||
}
|
||||
Reference in New Issue
Block a user