colorscheme github
This commit is contained in:
parent
2694493570
commit
b1d4fcc5b4
2 changed files with 34 additions and 8 deletions
|
|
@ -6,7 +6,7 @@ return {
|
|||
config = function()
|
||||
vim.cmd.colorscheme 'gruvbox-material'
|
||||
end,
|
||||
enabled = true,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
|
|
@ -84,4 +84,30 @@ return {
|
|||
end,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
"vague2k/vague.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.opt.termguicolors = true
|
||||
vim.cmd.colorscheme 'vague'
|
||||
end,
|
||||
enabled = false,
|
||||
},
|
||||
|
||||
{
|
||||
'projekt0n/github-nvim-theme',
|
||||
name = 'github-theme',
|
||||
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
config = function()
|
||||
require('github-theme').setup({
|
||||
-- ...
|
||||
})
|
||||
|
||||
vim.cmd('colorscheme github_dark_dimmed')
|
||||
end,
|
||||
enabled = true,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue