nixos/home/tui/config/nvim/lua/plugins/catppuccin.lua

53 lines
1.2 KiB
Lua
Raw Normal View History

local config = {
flavour = "macchiato",
term_colors = true,
transparent_background = true,
integrations = {
barbar = true,
barbecue = {
dim_dirname = true,
},
dashboard = true,
gitsigns = true,
hop = true,
indent_blankline = {
enabled = true,
colored_indent_levels = true,
},
cmp = true,
mason = true,
native_lsp = {
enabled = true,
},
neogit = true,
notify = true,
nvimtree = true,
navic = {
enabled = false,
custom_bg = "NONE",
},
treesitter = true,
treesitter_context = true,
telescope = true,
lsp_trouble = true,
which_key = true,
},
}
if vim.g.neovide then config.transparent_background = false end
return {
"catppuccin/nvim",
name = "catppuccin",
lazy = false,
priority = 1000,
init = function()
vim.opt.termguicolors = true
require "ui.fillchars"
end,
config = function()
require("catppuccin").setup(config)
2023-02-20 16:43:33 +00:00
vim.cmd.colorscheme "catppuccin"
end,
}