From 6b10b7bb44b4377cdb90889ea247c4b4f50cde5e Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Fri, 10 Sep 2021 20:31:38 -0500 Subject: [PATCH] feat: remove the custom .load() command, prefer the native colorscheme --- README.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 68484ae..85db246 100644 --- a/README.md +++ b/README.md @@ -361,20 +361,15 @@ EOF After setting things up, you can load Catppuccino like so: -For Lua: - -```lua -catppuccino.load() +```vim +" Vim Script +colorscheme catppuccino ``` -If `` is not passed then it'll pick the one in the config. - -For VimScript: - ```lua -colorscheme catppuccino +-- Lua +vim.cmd[[colorscheme catppuccino]] ``` - 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.