dotfiles/nvim/lua/plugins/theme.lua
Nikos Papadakis b593f9a8b8
add avante
2024-08-25 23:27:27 +03:00

47 lines
1.6 KiB
Lua

return {
{
"catppuccin/nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
name = "catppuccin",
opts = {
flavour = "frappe", -- latte, frappe, macchiato, mocha
transparent_background = false,
-- dim_inactive = {
-- enabled = true,
-- shade = "dark",
-- percentage = 0.15,
-- },
integrations = {
cmp = true,
fidget = true,
gitsigns = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
},
},
telescope = true,
treesitter = true,
mini = {
enabled = true,
indentscope_color = "",
},
},
},
config = function(_, opts)
require("catppuccin").setup(opts)
vim.cmd.colorscheme "catppuccin"
end
},
}