diff --git a/README.md b/README.md index b21fb4a..de2309d 100644 --- a/README.md +++ b/README.md @@ -86,12 +86,17 @@ transparent_background = false, term_colors = false, styles = { comments = "italic", - functions = "italic", - keywords = "italic", + conditionals = "italic", + loops = "NONE", + functions = "NONE", + keywords = "NONE", strings = "NONE", - variables = "italic", - numbers = "bold", - booleans = "bold" + variables = "NONE", + numbers = "NONE", + booleans = "NONE", + properties = "NONE", + types = "NONE", + operators = "NONE", }, integrations = { treesitter = true, @@ -147,7 +152,7 @@ integrations = { } ``` -The way you setup the settings on your configuration varies on whether you are using vimL for this or Lua. +The way you setup the settings on your configuration varies based on whether you are using vimL for this or Lua.
For init.lua @@ -183,16 +188,20 @@ After setting things up, you can load catppuccin like so: ```vim " Vim Script -let g:catppuccin_flavour = "dusk" +let g:catppuccin_flavour = "dusk" " latte, frappe, macchiato, mocha colorscheme catppuccin ``` ```lua -- Lua -vim.g.catppuccin_flavour = "storm" +vim.g.catppuccin_flavour = "frappe" -- latte, frappe, macchiato, mocha vim.cmd[[colorscheme catppuccin]] ``` +Remember that if you want to switch your Catppuccin flavour "on the fly" you may use the `:Catppuccin ` command. + +> Note: the command has autocompletion enabled, so you can just press tab to cycle through the flavours + ### Configuration Although settings already have self-explanatory names, here is where you can find info about each one of them and their classifications!