break out colorschemes to a separate file
This commit is contained in:
parent
a6af966f49
commit
86fb9d5828
31
init.lua
31
init.lua
|
@ -805,37 +805,6 @@ require('lazy').setup({
|
|||
end,
|
||||
},
|
||||
|
||||
--
|
||||
-- COLORSCHEMES
|
||||
--
|
||||
{ -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
'folke/tokyonight.nvim',
|
||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
init = function()
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
{ 'zenbones-theme/zenbones.nvim', dependencies = 'rktjmp/lush.nvim', lazy = false, priority = 1000 },
|
||||
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
|
||||
{
|
||||
'navarasu/onedark.nvim',
|
||||
name = 'onedark',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.cmd.colorscheme 'onedark'
|
||||
end,
|
||||
},
|
||||
{ 'scottmckendry/cyberdream.nvim', lazy = false, priority = 1000 },
|
||||
{
|
||||
'yorik1984/newpaper.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.g.newpaper_style = 'light'
|
||||
end,
|
||||
},
|
||||
{ 'rebelot/kanagawa.nvim', priority = 1000 },
|
||||
{ 'EdenEast/nightfox.nvim', priority = 1000 },
|
||||
|
||||
-- Highlight todo, notes, etc in comments
|
||||
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
||||
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
--
|
||||
-- COLORSCHEMES
|
||||
--
|
||||
{ -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
'folke/tokyonight.nvim',
|
||||
priority = 1000, -- Make sure to load this before all the other start plugins.
|
||||
init = function()
|
||||
vim.cmd.hi 'Comment gui=none'
|
||||
end,
|
||||
},
|
||||
{
|
||||
'navarasu/onedark.nvim',
|
||||
name = 'onedark',
|
||||
priority = 1000,
|
||||
init = function()
|
||||
vim.cmd.colorscheme 'onedark'
|
||||
end,
|
||||
},
|
||||
{ 'zenbones-theme/zenbones.nvim', dependencies = 'rktjmp/lush.nvim', lazy = false, priority = 1000 },
|
||||
{ 'yorik1984/newpaper.nvim', priority = 1000 },
|
||||
{ 'catppuccin/nvim', name = 'catppuccin', priority = 1000 },
|
||||
{ 'scottmckendry/cyberdream.nvim', lazy = false, priority = 1000 },
|
||||
{ 'rebelot/kanagawa.nvim', priority = 1000 },
|
||||
{ 'EdenEast/nightfox.nvim', priority = 1000 },
|
||||
}
|
Loading…
Reference in New Issue