feat: further plugin integration for catppuccin theme

This commit is contained in:
NotAShelf 2023-02-02 00:00:48 +03:00
parent caac3e5af4
commit 54305d50fa
No known key found for this signature in database
GPG key ID: 5B5C8895F28445F1

View file

@ -23,7 +23,21 @@
setup = {style ? "mocha"}: '' setup = {style ? "mocha"}: ''
-- Catppuccin theme -- Catppuccin theme
require('catppuccin').setup { require('catppuccin').setup {
flavour = "${style}" flavour = "${style}",
transparent_background = true,
integrations = {
nvimtree = {
enabled = true,
transparent_panel = false,
show_root = true,
},
hop = true,
gitsigns = true,
telescope = true,
treesitter = true,
ts_rainbow = true,
},
} }
-- setup must be called before loading -- setup must be called before loading
vim.cmd.colorscheme "catppuccin" vim.cmd.colorscheme "catppuccin"