colorscheme github

pull/1467/head
Lorran David 7 months ago
parent 2694493570
commit b1d4fcc5b4

@ -1,8 +1,8 @@
-- Autocmd to open Neo-tree automatically on startup -- Autocmd to open Neo-tree automatically on startup
vim.api.nvim_create_autocmd("VimEnter", { -- vim.api.nvim_create_autocmd("VimEnter", {
callback = function() -- callback = function()
if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then -- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() }) -- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
end -- end
end -- end
}) -- })

@ -6,7 +6,7 @@ return {
config = function() config = function()
vim.cmd.colorscheme 'gruvbox-material' vim.cmd.colorscheme 'gruvbox-material'
end, end,
enabled = true, enabled = false,
}, },
{ {
@ -84,4 +84,30 @@ return {
end, end,
enabled = false, 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…
Cancel
Save