colorscheme github
This commit is contained in:
parent
2694493570
commit
b1d4fcc5b4
|
@ -1,8 +1,8 @@
|
|||
-- Autocmd to open Neo-tree automatically on startup
|
||||
vim.api.nvim_create_autocmd("VimEnter", {
|
||||
callback = function()
|
||||
if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
|
||||
require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
|
||||
end
|
||||
end
|
||||
})
|
||||
-- vim.api.nvim_create_autocmd("VimEnter", {
|
||||
-- callback = function()
|
||||
-- if vim.fn.isdirectory(vim.fn.getcwd()) == 1 then
|
||||
-- require('neo-tree.command').execute({ toggle = false, dir = vim.loop.cwd() })
|
||||
-- end
|
||||
-- end
|
||||
-- })
|
||||
|
|
|
@ -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…
Reference in New Issue