fix(readme): Missing palette

dev
nullchilly 2 years ago
parent 806fffc4e3
commit a05ca14360

@ -463,6 +463,9 @@ vim.api.nvim_create_autocmd("User", {
Add this to `custom_highlights` settings
```lua
local colors = require("catppuccin.palettes").get_palette()
colors.none = "NONE"
require("catppuccin").setup {
custom_highlights = {
Comment = { fg = colors.overlay1 },
LineNr = { fg = colors.overlay1 },
@ -472,15 +475,10 @@ custom_highlights = {
DiagnosticVirtualTextWarn = { bg = colors.none },
DiagnosticVirtualTextInfo = { bg = colors.none },
DiagnosticVirtualTextHint = { bg = colors.none },
},
}
}
```
#### Abnormal colors?
You need to enable [truecolor](https://wiki.archlinux.org/title/Color_output_in_console#True_color_support)
Related: [:h termguicolors](https://neovim.io/doc/user/options.html#'termguicolors'), [catppuccin/nvim#182](https://github.com/catppuccin/nvim/issues/182),
#### Use catppuccin theme for :set background=light/dark?
The following autocmd will change the flavour to latte when you `:set background=light` and to mocha after `:set background=dark`
@ -494,6 +492,12 @@ vim.api.nvim_create_autocmd("OptionSet", {
})
```
#### Abnormal colors?
You need to enable [truecolor](https://wiki.archlinux.org/title/Color_output_in_console#True_color_support)
Related: [:h termguicolors](https://neovim.io/doc/user/options.html#'termguicolors'), [catppuccin/nvim#182](https://github.com/catppuccin/nvim/issues/182),
For people who are hybrid between light and dark mode!
## 💝 Thanks to

@ -51,7 +51,7 @@ config.options = {
lsp_saga = false,
gitgutter = false,
gitsigns = true,
telescope = false,
telescope = true,
nvimtree = {
enabled = true,
show_root = true,

Loading…
Cancel
Save