feat(theme): Use cattppuccin-mocha theme

This commit is contained in:
Jiří Štefka 2024-11-19 04:21:02 +01:00
parent 9199070c13
commit b5056a4fe8
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
6 changed files with 59 additions and 3 deletions
nvim/plugin

View file

@ -0,0 +1,27 @@
if vim.g.did_load_catppuccin_plugin then
return
end
vim.g.did_load_catppuccin_plugin = true
require("catppuccin").setup({
integrations = {
aerial = true,
cmp = true,
diffview = true,
gitsigns = true,
indent_blankline = {
enabled = true,
-- scope_color = "", -- catppuccin color (eg. `lavender`) Default: text
colored_indent_levels = false,
},
lsp_trouble = true,
navic = {
enabled = false,
custom_bg = "NONE", -- "lualine" will set background to mantle
},
nvim_surround = true,
overseer = true,
treesitter = true,
which_key = true,
}
})