mirror of
https://github.com/junegunn/limelight.vim.git
synced 2025-11-18 16:45:36 -05:00
Compare commits
3 Commits
be498cfb0c
...
2ec6103eb6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ec6103eb6 | ||
|
|
61faf12b3d | ||
|
|
43cd359e6c |
12
README.md
12
README.md
@@ -42,18 +42,26 @@ xmap <Leader>l <Plug>(Limelight)
|
||||
### Options
|
||||
|
||||
For some color schemes, Limelight may not be able to calculate the color for
|
||||
dimming down the surrounding paragraphs. In that case, you need to define
|
||||
`g:limelight_conceal_ctermfg` or `g:limelight_conceal_guifg`.
|
||||
dimming down the surrounding paragraphs. In that case, you need to define it manually
|
||||
in your .vimrc file. you can do so by adding `g:limelight_conceal_ctermfg=` or `g:limelight_conceal_guifg=`
|
||||
followed by the color of your choosing. (To see the available color for each you can type ":help cterm-colors" or ":help gui-colors".)
|
||||
|
||||
Here's some line examples of what it should look like, but feel free to change the color name to suite your needs.
|
||||
|
||||
```vim
|
||||
" Color name (:help cterm-colors) or ANSI code
|
||||
let g:limelight_conceal_ctermfg = 'gray'
|
||||
" Or
|
||||
let g:limelight_conceal_ctermfg = 240
|
||||
|
||||
|
||||
" Color name (:help gui-colors) or RGB color
|
||||
let g:limelight_conceal_guifg = 'DarkGray'
|
||||
" Or
|
||||
let g:limelight_conceal_guifg = '#777777'
|
||||
|
||||
"Some other example of line you might whant to try --->
|
||||
|
||||
" Default: 0.5
|
||||
let g:limelight_default_coefficient = 0.7
|
||||
|
||||
|
||||
Reference in New Issue
Block a user