diff options
author | Chris <[email protected]> | 2020-04-23 22:44:32 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-04-23 22:44:32 -0400 |
commit | 29b0a5c47862f387c5905a85d2c03e056003b915 (patch) | |
tree | 7b8e4c064e9285f685a9e1c14d00e5d9c81b117c /modules/goyo-limelight.vim | |
parent | 6f4727d620f50e31f5043f33b6bccd86c8d73972 (diff) |
auto push
Diffstat (limited to 'modules/goyo-limelight.vim')
-rw-r--r-- | modules/goyo-limelight.vim | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/modules/goyo-limelight.vim b/modules/goyo-limelight.vim deleted file mode 100644 index ab3f3441..00000000 --- a/modules/goyo-limelight.vim +++ /dev/null @@ -1,63 +0,0 @@ - -"Make window a little bigger" -" -let g:goyo_width=100 -let g:goy_height=95 -" -" -" Disable Deoplete " - -function! s:goyo_enter() - - "call deoplete#custom#option('auto_complete', v:false) - "set spell spelllang=en_us - set wrap - set conceallevel=0 - set tw=100 - set noshowcmd - set scrolloff=999 -"" set background=light -"" colorscheme flattened_light - "Limelight - " ... -endfunction - -function! s:goyo_leave() - - "call deoplete#custom#option('auto_complete', v:true) - "set nospell - set wrap! - set showcmd - set scrolloff=5 -"" set background=dark -"" colorscheme Tender - "Limelight! - " ... -endfunction - -autocmd! User GoyoEnter nested call <SID>goyo_enter() -autocmd! User GoyoLeave nested call <SID>goyo_leave() - -" 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 = 0 - -" 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 |