From c463761f7a8e802b0835a89cafb8c4ad51f724d0 Mon Sep 17 00:00:00 2001 From: Pau Garcia Chiner <49660697+pauchiner@users.noreply.github.com> Date: Wed, 14 Feb 2024 10:40:57 +0100 Subject: [PATCH] chore: update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 6169470..0d2f9bb 100644 --- a/README.md +++ b/README.md @@ -95,11 +95,17 @@ First install the theme with your preferred package manager: ```vim colorscheme pastelnight + +" There are also a theme variant with greater contrast +colorscheme pastelnight-high-contrast ``` ##### Lua ```lua vim.api.nvim_command [[colorscheme pastelnight]] + +-- There are also a theme variant with greater contrast +vim.api.nvim_command [[colorscheme pastelnight-high-contrast]] ``` #### 🔌 Other supported plugins @@ -141,6 +147,9 @@ let g:lightline = {'colorscheme': 'pastelnight'} ```lua require("pastelnight").setup({ + --- The theme comes in two styles, `default` and `highContrast`. + style = "default" + --- Enable this to disable setting the background color. transparent = false,