Skip to content

Instantly share code, notes, and snippets.

@ctaylo21
Created April 14, 2019 18:12
Show Gist options
  • Save ctaylo21/6117b530fa777b891a01bf7b992420ae to your computer and use it in GitHub Desktop.
Save ctaylo21/6117b530fa777b891a01bf7b992420ae to your computer and use it in GitHub Desktop.
Base configuration options for Denite setup in Jarvis
" 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