kickstart.nvim/lua/custom/plugins/colorschemes.lua

109 lines
2.3 KiB
Lua
Raw Normal View History

2024-10-05 01:27:35 -03:00
return {
{
'sainnhe/gruvbox-material',
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme 'gruvbox-material'
end,
2024-10-27 04:05:27 -03:00
enabled = false,
2024-10-05 01:27:35 -03:00
},
{
'sainnhe/sonokai',
lazy = false,
priority = 1000,
config = function()
vim.g.sonokai_style = 'shusia'
vim.cmd.colorscheme 'sonokai'
end,
enabled = false,
},
{
'catppuccin/nvim',
lazy = false,
priority = 1000,
config = function()
require('catppuccin').setup {
integrations = {
cmp = true,
fidget = true,
gitsigns = true,
harpoon = true,
indent_blankline = {
enabled = false,
scope_color = 'sapphire',
colored_indent_levels = false,
},
mason = true,
native_lsp = { enabled = true },
noice = true,
notify = true,
symbols_outline = true,
telescope = true,
treesitter = true,
treesitter_context = true,
},
}
vim.cmd.colorscheme 'catppuccin-macchiato'
-- Hide all semantic highlights until upstream issues are resolved (https://github.com/catppuccin/nvim/issues/480)
for _, group in ipairs(vim.fn.getcompletion('@lsp', 'highlight')) do
vim.api.nvim_set_hl(0, group, {})
end
end,
2024-10-19 19:52:22 -03:00
enabled = false,
2024-10-05 01:27:35 -03:00
},
{
'rose-pine/neovim',
name = 'rose-pine',
lazy = false,
priority = 1000,
config = function()
require('rose-pine').setup {
highlight_groups = {
Normal = { bg = '#111111' },
},
}
vim.cmd.colorscheme 'rose-pine'
end,
2024-10-08 11:06:23 -03:00
enabled = false,
2024-10-05 01:27:35 -03:00
},
2024-10-08 11:06:23 -03:00
{
"savq/melange-nvim",
lazy = false,
priority = 1000,
config = function ()
vim.opt.termguicolors = true
vim.cmd.colorscheme 'melange'
2024-10-09 23:27:42 -03:00
end,
enabled = false,
},
2024-10-27 04:05:27 -03:00
{
"vague2k/vague.nvim",
lazy = false,
priority = 1000,
config = function()
vim.opt.termguicolors = true
vim.cmd.colorscheme 'vague'
end,
enabled = false,
},
{
2024-11-03 15:27:44 -03:00
'Mofiqul/vscode.nvim',
2024-10-27 04:05:27 -03:00
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()
2024-11-03 15:27:44 -03:00
vim.cmd('colorscheme vscode')
2024-10-27 04:05:27 -03:00
end,
enabled = true,
}
2024-10-05 01:27:35 -03:00
}