mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Add note about adding options first
This commit adds notes to Readme about setting configuration before the `colorscheme`. Config wont work if not
This commit is contained in:
parent
09d41870b2
commit
edbd6c7897
1 changed files with 11 additions and 0 deletions
11
readme.md
11
readme.md
|
|
@ -73,6 +73,17 @@ require('lualine').setup({
|
||||||
|
|
||||||
## Options
|
## Options
|
||||||
|
|
||||||
|
> ❗️ configuration options need to be set **BEFORE** loading the color scheme with `colorscheme rose-pine`
|
||||||
|
|
||||||
|
```vim
|
||||||
|
" Vimscript
|
||||||
|
let g:rose_pine_enable_italics = 1
|
||||||
|
let g:rose_pine_variant = "moon"
|
||||||
|
let g:rose_pine_disable_background = 1
|
||||||
|
colorscheme rose-pine
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
-- Set variant
|
-- Set variant
|
||||||
-- @usage 'base' | 'moon' | 'dawn' | 'rose-pine[-moon][-dawn]'
|
-- @usage 'base' | 'moon' | 'dawn' | 'rose-pine[-moon][-dawn]'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue