dotfiles/nvim/lua/plugins/00-colorscheme.lua

44 lines
768 B
Lua

return {
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
config = function()
require("catppuccin").setup({
flavour = "auto",
background = {
light = "latte",
dark = "mocha",
},
term_colors = vim.g.neovide,
integrations = {
blink_cmp = true,
diffview = true,
mason = true,
gitsigns = true,
nvimtree = true,
telescope = {
enabled = true,
},
treesitter = true,
dropbar = {
enabled = true,
color_mode = false,
},
native_lsp = {
enabled = true,
inlay_hints = {
background = true,
},
},
which_key = true,
notify = true,
mini = {
enabled = true,
indentscope_color = "",
},
},
})
vim.cmd.colorscheme("catppuccin")
end,
}