Renable catppuccin plugin, but not currently used
This commit is contained in:
parent
6642f04431
commit
aca69fdf2e
|
@ -1,7 +1,12 @@
|
||||||
local config = {
|
return {
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
lazy = true,
|
||||||
|
config = true,
|
||||||
|
opts = {
|
||||||
flavour = "macchiato",
|
flavour = "macchiato",
|
||||||
term_colors = true,
|
term_colors = true,
|
||||||
transparent_background = true,
|
transparent_background = false,
|
||||||
integrations = {
|
integrations = {
|
||||||
alpha = true,
|
alpha = true,
|
||||||
gitsigns = true,
|
gitsigns = true,
|
||||||
|
@ -22,19 +27,5 @@ local config = {
|
||||||
lsp_trouble = true,
|
lsp_trouble = true,
|
||||||
which_key = true,
|
which_key = true,
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
|
||||||
if vim.g.neovide then config.transparent_background = false end
|
|
||||||
|
|
||||||
return {
|
|
||||||
"catppuccin/nvim",
|
|
||||||
enabled = false,
|
|
||||||
name = "catppuccin",
|
|
||||||
lazy = false,
|
|
||||||
priority = 1000,
|
|
||||||
init = function() vim.opt.termguicolors = true end,
|
|
||||||
config = function()
|
|
||||||
require("catppuccin").setup(config)
|
|
||||||
vim.cmd.colorscheme "catppuccin"
|
|
||||||
end,
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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,
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue