diff options
author | Philipp Schmitt <[email protected]> | 2022-05-01 15:57:28 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-01 15:57:28 +0200 |
commit | d0c53935431662befbff69a72599e1494a295f23 (patch) | |
tree | c89550923fec3e5c8bf45add7a15494fe79d18e2 /lua | |
parent | f3da77f0ef79cb308b5b116d025504d7cdf77fc7 (diff) |
feat: add cmp-tmux to the list of sources (#2542)
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lvim/core/cmp.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index 56aece0c..baf6279b 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -207,6 +207,7 @@ M.config = function() vsnip = "(Snippet)", luasnip = "(Snippet)", buffer = "(Buffer)", + tmux = "(TMUX)", }, duplicates = { buffer = 1, @@ -249,6 +250,7 @@ M.config = function() { name = "emoji" }, { name = "treesitter" }, { name = "crates" }, + { name = "tmux" }, }, mapping = cmp.mapping.preset.insert { ["<C-k>"] = cmp.mapping.select_prev_item(), |