added github theme
This commit is contained in:
parent
beecfef93e
commit
cfc6aaa447
43
lua/plugins/github-theme.lua
Normal file
43
lua/plugins/github-theme.lua
Normal file
@ -0,0 +1,43 @@
|
||||
return
|
||||
{
|
||||
'projekt0n/github-nvim-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({
|
||||
options = {
|
||||
dim_inactive = true,
|
||||
modules = {
|
||||
'cmp',
|
||||
-- 'coc',
|
||||
-- 'coc_explorer',
|
||||
'dapui',
|
||||
-- 'diffchar',
|
||||
-- 'dashboard',
|
||||
'diagnostic',
|
||||
-- 'fidget',
|
||||
-- 'fzf',
|
||||
'gitgutter',
|
||||
'gitsigns',
|
||||
'indent_blankline',
|
||||
'lsp_semantic_tokens',
|
||||
-- 'lsp_trouble',
|
||||
-- 'mini',
|
||||
'native_lsp',
|
||||
'neogit',
|
||||
'neotree',
|
||||
-- 'notify',
|
||||
-- 'nvimtree',
|
||||
'telescope',
|
||||
'treesitter',
|
||||
'treesitter_context',
|
||||
'whichkey',
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
-- vim.cmd('colorscheme github_dark')
|
||||
vim.cmd('colorscheme github_dark_dimmed')
|
||||
end,
|
||||
enabled = false,
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user