trying colorscheme

This commit is contained in:
MaasOedipa 2025-10-29 12:00:31 +01:00
parent 89f1e22428
commit a25a3de150
2 changed files with 20 additions and 1 deletions

View File

@ -882,7 +882,7 @@ require('lazy').setup({
--
-- 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.
priority = 999, -- Make sure to load this before all the other start plugins.
config = function()
---@diagnostic disable-next-line: missing-fields
require('tokyonight').setup {

View File

@ -0,0 +1,19 @@
return {
{
'catppuccin/nvim',
name = 'catppuccin',
priority = 1000, -- ensure it loads first
config = function()
require('catppuccin').setup {
flavour = 'mocha', -- latte, frappe, macchiato, mocha
transparent_background = true,
integrations = {
treesitter = true,
native_lsp = { enabled = true },
telescope = true,
},
}
vim.cmd.colorscheme 'catppuccin'
end,
},
}