nvim-cmp deprecates nvim-compe
This commit is contained in:
parent
35bbd19cea
commit
c1445e28dc
1 changed files with 78 additions and 35 deletions
|
@ -5,6 +5,7 @@ return require('packer').startup(function()
|
||||||
use 'wbthomason/packer.nvim'
|
use 'wbthomason/packer.nvim'
|
||||||
use 'ray-x/lsp_signature.nvim'
|
use 'ray-x/lsp_signature.nvim'
|
||||||
use 'jose-elias-alvarez/nvim-lsp-ts-utils'
|
use 'jose-elias-alvarez/nvim-lsp-ts-utils'
|
||||||
|
use 'L3MON4D3/LuaSnip'
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'b3nj5m1n/kommentary',
|
'b3nj5m1n/kommentary',
|
||||||
|
@ -20,43 +21,85 @@ return require('packer').startup(function()
|
||||||
}
|
}
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"hrsh7th/nvim-compe",
|
'hrsh7th/nvim-cmp',
|
||||||
config = function()
|
requires = {
|
||||||
require("compe").setup {
|
'andersevenrud/cmp-tmux',
|
||||||
min_length = 0,
|
'hrsh7th/cmp-nvim-lsp',
|
||||||
source = {
|
'hrsh7th/cmp-buffer',
|
||||||
buffer = true,
|
'hrsh7th/cmp-path',
|
||||||
nvim_lsp = true,
|
'hrsh7th/cmp-cmdline',
|
||||||
nvim_lua = true,
|
'saadparwaiz1/cmp_luasnip',
|
||||||
}
|
},
|
||||||
}
|
config = function()
|
||||||
local utils = require("dln.utils")
|
local cmp = require'cmp'
|
||||||
local check_behind = function()
|
-- local cmp = require('hrsh7th/nvim-cmp')
|
||||||
local is_empty = function(col)
|
|
||||||
return col <= 0 or vim.fn.getline("."):sub(col, col):match("%s")
|
|
||||||
end
|
|
||||||
local pos_col = vim.fn.col(".") - 1
|
|
||||||
return is_empty(pos_col) and is_empty(pos_col - 1) and true or false
|
|
||||||
end
|
|
||||||
|
|
||||||
_G.complete = function(pum, empty)
|
cmp.setup({
|
||||||
if vim.fn.pumvisible() == 1 then
|
snippet = {
|
||||||
return utils.term_codes(pum)
|
-- REQUIRED - you must specify a snippet engine
|
||||||
elseif check_behind() then
|
expand = function(args)
|
||||||
return utils.term_codes(empty)
|
vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
|
||||||
else
|
-- require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
|
||||||
return vim.fn["compe#complete"]()
|
-- require('snippy').expand_snippet(args.body) -- For `snippy` users.
|
||||||
end
|
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
|
||||||
end
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
mapping = {
|
||||||
|
["<C-d>"] = cmp.mapping.scroll_docs(-4),
|
||||||
|
["<C-u>"] = cmp.mapping.scroll_docs(4),
|
||||||
|
["<C-e>"] = cmp.mapping.close(),
|
||||||
|
["<CR>"] = cmp.mapping.confirm({
|
||||||
|
select = false,
|
||||||
|
}),
|
||||||
|
['<C-Space>'] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
|
||||||
|
["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
|
if cmp.visible() then
|
||||||
|
cmp.select_next_item()
|
||||||
|
elseif luasnip.expand_or_jumpable() then
|
||||||
|
luasnip.expand_or_jump()
|
||||||
|
elseif has_words_before() then
|
||||||
|
cmp.complete()
|
||||||
|
else
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
end, { "i", "s" }),
|
||||||
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
||||||
|
if cmp.visible() then
|
||||||
|
cmp.select_prev_item()
|
||||||
|
elseif luasnip.jumpable(-1) then
|
||||||
|
luasnip.jump(-1)
|
||||||
|
else
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
end, { "i", "s" }),
|
||||||
|
},
|
||||||
|
|
||||||
|
sources = cmp.config.sources({
|
||||||
|
{
|
||||||
|
name = 'buffer',
|
||||||
|
priority = 1,
|
||||||
|
|
||||||
|
},
|
||||||
|
{ name = 'luasnip' },
|
||||||
|
{
|
||||||
|
name = 'tmux',
|
||||||
|
priority = 2,
|
||||||
|
option = {
|
||||||
|
trigger_characters = {},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name = 'nvim_lsp',
|
||||||
|
priority = 3,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
utils.mapx("is", "<C-.>", "v:lua.complete('<C-n>', '<Tab>')")
|
|
||||||
utils.mapx("is", "<C-Space>", "v:lua.complete('<C-n>', '<Tab>')")
|
|
||||||
utils.mapx("is", "<Tab>", "v:lua.complete('<C-n>', '<Tab>')")
|
|
||||||
utils.mapx("is", "<S-Tab>", "v:lua.complete('<C-p>', '<C-h>')")
|
|
||||||
utils.mapx("x", "<CR>", "compe:#confirm('<CR')")
|
|
||||||
utils.mapx("is", "<C-e>", "compe#close('<C-e>')")
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'lewis6991/gitsigns.nvim',
|
'lewis6991/gitsigns.nvim',
|
||||||
|
|
Loading…
Reference in a new issue