nvim: init.vim: Update intero parameters
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
b8bf6ac33a
commit
689514e93b
1 changed files with 3 additions and 5 deletions
|
@ -258,16 +258,14 @@ let g:cabal_indent_section = 2
|
||||||
" Intero starts automatically. Set this if you'd like to prevent that.
|
" Intero starts automatically. Set this if you'd like to prevent that.
|
||||||
let g:intero_start_immediately = 0
|
let g:intero_start_immediately = 0
|
||||||
" Enable type information on hover (when holding cursor at point for ~1 second).
|
" Enable type information on hover (when holding cursor at point for ~1 second).
|
||||||
let g:intero_type_on_hover = 0
|
let g:intero_type_on_hover = 1
|
||||||
" Change the intero window size; default is 10.
|
" Change the intero window size; default is 10.
|
||||||
let g:intero_window_size = 15
|
let g:intero_window_size = 75
|
||||||
" Sets the intero window to split vertically; default is horizontal
|
" Sets the intero window to split vertically; default is horizontal
|
||||||
let g:intero_vertical_split = 1
|
let g:intero_vertical_split = 1
|
||||||
" Use GHCi backend
|
" Use GHCi backend
|
||||||
let g:intero_backend = {
|
let g:intero_backend = {
|
||||||
\ 'command': 'stack repl',
|
\ 'command' : 'stack ghci',
|
||||||
\ 'options': '-Wall',
|
|
||||||
\ 'cwd': expand('%:p:h'),
|
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" Use deoplete
|
" Use deoplete
|
||||||
|
|
Loading…
Reference in a new issue