diff options
author | kylo252 <[email protected]> | 2021-08-17 17:20:18 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-17 19:50:18 +0430 |
commit | 335e707b2aae38c0cd5d0d962b27038ab1117aa6 (patch) | |
tree | 4be5b6ca5ea2e018893b067e5656f199e7a99e8f /lua/core/compe.lua | |
parent | 1cc2452eb7b76aad36a6d9d210abff88edf6721a (diff) |
[Feature] Make the rest of the builtins configurable (#1318)
Diffstat (limited to 'lua/core/compe.lua')
-rw-r--r-- | lua/core/compe.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/compe.lua b/lua/core/compe.lua index 9edb2af0..29344d97 100644 --- a/lua/core/compe.lua +++ b/lua/core/compe.lua @@ -1,7 +1,7 @@ local M = {} M.config = function() lvim.builtin.compe = { - enabled = true, + active = true, autocomplete = true, debug = false, min_length = 1, |