Renable catppuccin plugin, but not currently used

This commit is contained in:
Evie Litherland-Smith 2023-05-17 18:37:59 +01:00
parent 6642f04431
commit aca69fdf2e
2 changed files with 28 additions and 37 deletions

View file

@ -1,40 +1,31 @@
local config = {
flavour = "macchiato",
term_colors = true,
transparent_background = true,
integrations = {
alpha = true,
gitsigns = true,
hop = true,
indent_blankline = { enabled = true, colored_indent_levels = true },
cmp = true,
markdown = true,
mini = true,
native_lsp = { enabled = true },
neogit = true,
neotree = true,
noice = true,
notify = true,
navic = { enabled = true },
treesitter = true,
treesitter_context = true,
telescope = true,
lsp_trouble = true,
which_key = true,
},
}
if vim.g.neovide then config.transparent_background = false end
return { return {
"catppuccin/nvim", "catppuccin/nvim",
enabled = false,
name = "catppuccin", name = "catppuccin",
lazy = false, lazy = true,
priority = 1000, config = true,
init = function() vim.opt.termguicolors = true end, opts = {
config = function() flavour = "macchiato",
require("catppuccin").setup(config) term_colors = true,
vim.cmd.colorscheme "catppuccin" transparent_background = false,
end, integrations = {
alpha = true,
gitsigns = true,
hop = true,
indent_blankline = { enabled = true, colored_indent_levels = true },
cmp = true,
markdown = true,
mini = true,
native_lsp = { enabled = true },
neogit = true,
neotree = true,
noice = true,
notify = true,
navic = { enabled = true },
treesitter = true,
treesitter_context = true,
telescope = true,
lsp_trouble = true,
which_key = true,
},
},
} }

View file

@ -1,9 +1,9 @@
return { return {
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
lazy = true, lazy = true,
config = true,
opts = { opts = {
transparent = false, transparent = false,
styles = { sidebars = "normal", floats = "transparent" }, styles = { sidebars = "normal", floats = "transparent" },
}, },
config = true,
} }