Created
April 14, 2019 18:12
-
-
Save ctaylo21/6117b530fa777b891a01bf7b992420ae to your computer and use it in GitHub Desktop.
Base configuration options for Denite setup in Jarvis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Custom options for Denite | |
" auto_resize - Auto resize the Denite window height automatically. | |
" prompt - Customize denite prompt | |
" direction - Specify Denite window direction as directly below current pane | |
" winminheight - Specify min height for Denite window | |
" highlight_mode_insert - Specify h1-CursorLine in insert mode | |
" prompt_highlight - Specify color of prompt | |
" highlight_matched_char - Matched characters highlight | |
" highlight_matched_range - matched range highlight | |
let s:denite_options = {'default' : { | |
\ 'auto_resize': 1, | |
\ 'prompt': 'λ:', | |
\ 'direction': 'rightbelow', | |
\ 'winminheight': '10', | |
\ 'highlight_mode_insert': 'Visual', | |
\ 'highlight_mode_normal': 'Visual', | |
\ 'prompt_highlight': 'Function', | |
\ 'highlight_matched_char': 'Function', | |
\ 'highlight_matched_range': 'Normal' | |
\ }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment