diff options
author | christianchiarulli <[email protected]> | 2021-07-09 18:09:53 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-09 18:09:53 -0400 |
commit | bc81c31fb7c0e8dca3098a8f5cf75d187fd06b9f (patch) | |
tree | 0778b657d2b62e19b6082f9fd7af6ada77413849 /lua/lv-compe/config.lua | |
parent | 831102afdc4082936db918f5e8ba369fcc36c296 (diff) |
expose completion config
Diffstat (limited to 'lua/lv-compe/config.lua')
-rw-r--r-- | lua/lv-compe/config.lua | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lua/lv-compe/config.lua b/lua/lv-compe/config.lua new file mode 100644 index 00000000..160a3dbb --- /dev/null +++ b/lua/lv-compe/config.lua @@ -0,0 +1,31 @@ +O.completion = { + enabled = true, + autocomplete = true, + 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 = { kind = " (Path)" }, + buffer = { kind = " (Buffer)" }, + calc = { kind = " (Calc)" }, + vsnip = { kind = " (Snippet)" }, + nvim_lsp = { kind = " (LSP)" }, + nvim_lua = false, + spell = { kind = " (Spell)" }, + tags = false, + vim_dadbod_completion = false, + snippets_nvim = false, + ultisnips = false, + treesitter = false, + emoji = { kind = " ﲃ (Emoji)", filetypes = { "markdown", "text" } }, + -- for emoji press : (idk if that in compe tho) + }, +} |