From f7e01f18f7be02f5c0ca4245e4ea15be01b6b686 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 29 Aug 2021 16:23:55 -0500 Subject: [PATCH 1/3] chore: updated config in readme --- README.md | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 842fe8c..0c2f96a 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ NeoBundleFetch 'Pocco81/Catppuccino.nvim' There are already some sane defaults that you may like, however you can change them to match your taste. These are the defaults: ```lua -colorscheme = "catppuccino", +colorscheme = "dark_catppuccino", transparency = false, styles = { comments = "italic", @@ -183,7 +183,7 @@ local catppuccino = require("catppuccino") -- configure it catppuccino.setup( { - colorscheme = "catppuccino", + colorscheme = "dark_catppuccino", transparency = false, styles = { comments = "italic", @@ -224,9 +224,6 @@ catppuccino.setup( } } ) - --- load it -catppuccino.load() ```
@@ -243,7 +240,7 @@ local catppuccino = require("catppuccino") -- configure it catppuccino.setup( { - colorscheme = "catppuccino", + colorscheme = "dark_catppuccino", transparency = false, styles = { comments = "italic", @@ -284,12 +281,24 @@ catppuccino.setup( } } ) - --- load it -catppuccino.load() EOF ``` +After setting things up, you can load Catppuccino like so: + +For Lua: +```lua +catppuccino.load() +``` +If `` is not passed then it'll pick the one in the config. + + +For VimScript: +```lua +colorscheme catppuccino +``` +Passing `catppuccino` to the `colorscheme` command will pick the colorscheme in the config. Optionally you may pass the one you want to use by its code name (e.g. `colorscheme neon_latte`). +
From 73c9ba026adeee67022bacab96010bacf47c7564 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 29 Aug 2021 16:25:12 -0500 Subject: [PATCH 2/3] fix: moved updated doc to the right place --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0c2f96a..36aabfd 100644 --- a/README.md +++ b/README.md @@ -283,6 +283,8 @@ catppuccino.setup( ) EOF ``` +
+ After setting things up, you can load Catppuccino like so: @@ -299,9 +301,6 @@ colorscheme catppuccino ``` Passing `catppuccino` to the `colorscheme` command will pick the colorscheme in the config. Optionally you may pass the one you want to use by its code name (e.g. `colorscheme neon_latte`). -
- - For instructions on how to configure the plugin, check out the [configuration](#configuration) section. ## Updating From d854a4afc3bd0885ee8a515749a26e9686a05414 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sun, 29 Aug 2021 16:26:32 -0500 Subject: [PATCH 3/3] chore: diction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 36aabfd..25a6560 100644 --- a/README.md +++ b/README.md @@ -299,7 +299,7 @@ For VimScript: ```lua colorscheme catppuccino ``` -Passing `catppuccino` to the `colorscheme` command will pick the colorscheme in the config. Optionally you may pass the one you want to use by its code name (e.g. `colorscheme neon_latte`). +Passing `catppuccino` to the `colorscheme` command will pick the colorscheme in the config. Optionally, you could pass one by its code name (e.g. `colorscheme neon_latte`). For instructions on how to configure the plugin, check out the [configuration](#configuration) section.