Replies: 2 comments 1 reply
|
I'm facing the same problem... https://github.com/NvChad/base46/tree/v2.0 Here's their catppuccin Mocha implementation: |
|
NvChad doesn't seem to support themes other from the integrated ones by base46. As they integrated catpouccin-mocha, the best way is to just use it. However, if you really want to use this plugin, you should firstly try to disable the plugin NvChad/base46, and manually define custom highlights for the statusline, tab/bufferline, NvTerm, etc for they don't exist. (Which might be a hard work!) |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello!
I am trying to enable the theme with nvchad.com together. But for some reason neither the status bar nor nvim-tree are colorized with the
lattetheme.This is my config and how I load the plugin:
{ "catppuccin/nvim", name = "catppuccin", lazy = false, priority = 1000, config = function() vim.g.catppuccin_flavour = "latte" require("catppuccin").setup { flavour = "latte", dim_inactive = { enabled = false, }, integrations = { cmp = true, nvimtree = true, treesitter = true, }, } vim.cmd.colorscheme "catppuccin-latte" end },This is how it looks like on my system:
As you can also see, the terminal colors are the one of the non-latte theme; they are pastell. What am I doing wrong?
Edit: I did some more digging into the nvchad.com source. Here is the default configuration of nvim-tree that gets loaded here. Not sure if this clashes somehow.
All reactions