Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/plugins/configs/catppuccin.lua

29 lines
543 B
Lua

local present, catppuccin = pcall(require, "catppuccin")
if present then
vim.g.catppuccin_flavour = "macchiato"
catppuccin.setup({
term_colors = true,
compile = {
enabled = true,
path = vim.fn.stdpath("cache") .. "/catppuccin",
},
integration = {
neotree = {
enabled = true,
show_root = true,
transparent_panel = false,
},
navic = {
enabled = true,
custom_bg = "NONE",
},
lsp_saga = true,
treesitter_context = true,
ts_rainbow = true,
},
})
vim.cmd("colorscheme catppuccin")
end