mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
25 lines
503 B
Text
25 lines
503 B
Text
|
(module plugins.compe
|
||
|
{autoload {compe compe}})
|
||
|
|
||
|
(compe.setup
|
||
|
{:enabled true
|
||
|
:autocomplete false
|
||
|
:debug false
|
||
|
:min_length 1
|
||
|
:preselect "enable"
|
||
|
:throttle_time 80
|
||
|
:source_timeout 200
|
||
|
:incomplete_delay 400
|
||
|
:max_abbr_width 100
|
||
|
:max_kind_width 100
|
||
|
:max_menu_width 100
|
||
|
:documentation true
|
||
|
:source {:path true
|
||
|
:buffer true
|
||
|
:calc true
|
||
|
:nvim_lsp true
|
||
|
:nvim_lua true
|
||
|
:vsnip false
|
||
|
:conjure true}})
|
||
|
|