diff options
author | aktersnurra <grydholm@kth.se> | 2021-04-19 21:43:23 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2021-04-19 21:43:23 +0200 |
commit | 23b895222a16925d39d04d45dedbedec9db0c752 (patch) | |
tree | eb5759eed884c1ddcb32f1b702e55dc4521bf60e /.config/nvim/vim-script/_limelight | |
parent | 174cd547dc32bb6d50ab5da329ad1bc4d516c20a (diff) |
Updates to nvim
Diffstat (limited to '.config/nvim/vim-script/_limelight')
-rw-r--r-- | .config/nvim/vim-script/_limelight/init.vim | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.config/nvim/vim-script/_limelight/init.vim b/.config/nvim/vim-script/_limelight/init.vim deleted file mode 100644 index 4e9bf10..0000000 --- a/.config/nvim/vim-script/_limelight/init.vim +++ /dev/null @@ -1,23 +0,0 @@ -" Color name (:help cterm-colors) or ANSI code -let g:limelight_conceal_ctermfg = 'gray' -let g:limelight_conceal_ctermfg = 240 - -" Color name (:help gui-colors) or RGB color -let g:limelight_conceal_guifg = 'DarkGray' -let g:limelight_conceal_guifg = '#777777' - -" Default: 0.5 -let g:limelight_default_coefficient = 0.7 - -" Number of preceding/following paragraphs to include (default: 0) -let g:limelight_paragraph_span = 1 - -" Beginning/end of paragraph -" When there's no empty line between the paragraphs -" and each paragraph starts with indentation -let g:limelight_bop = '^\s' -let g:limelight_eop = '\ze\n^\s' - -" Highlighting priority (default: 10) -" Set it to -1 not to overrule hlsearch -let g:limelight_priority = -1 |