[ CMD Comp ] - Enable nvim cmp for command fuzzy search, yanked wilder -- too many issues

This commit is contained in:
Price Hiller 2022-01-18 15:46:03 -06:00
parent f6bfe52a44
commit d1fdff6a7b
2 changed files with 19 additions and 67 deletions

View File

@ -1,45 +1,6 @@
local cmp = require("cmp")
local lspkind = require("lspkind")
cmp.setup({
snippet = {
-- REQUIRED - you must specify a snippet engine
expand = function(args)
-- vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
require("luasnip").lsp_expand(args.body) -- For `luasnip` users.
-- require('snippy').expand_snippet(args.body) -- For `snippy` users.
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
end,
},
formatting = {
format = lspkind.cmp_format({
with_text = true,
maxwidth = 50,
}),
},
mapping = {
["<C-b>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), { "i", "c" }),
["<C-f>"] = cmp.mapping(cmp.mapping.scroll_docs(4), { "i", "c" }),
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
["<C-y>"] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
["<C-e>"] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
["<CR>"] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
},
sources = cmp.config.sources({
{ name = "nvim_lsp" },
-- { name = 'vsnip' }, -- For vsnip users.
{ name = "luasnip" }, -- For luasnip users.
-- { name = 'ultisnips' }, -- For ultisnips users.
-- { name = 'snippy' }, -- For snippy users.
{ name = "neorg" },
}, {
-- { name = "buffer" },
}),
})
cmp.setup({})
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline("/", {

View File

@ -176,26 +176,17 @@ return require("packer").startup({
"ms-jpq/coq.thirdparty",
},
})
-- use({
-- "rafamadriz/friendly-snippets",
-- event = "InsertEnter",
-- })
--
-- use({
-- "hrsh7th/nvim-cmp",
-- even = "InsertEnter",
-- requires = {
-- "hrsh7th/cmp-nvim-lsp",
-- "hrsh7th/cmp-buffer",
-- "hrsh7th/cmp-path",
-- "hrsh7th/cmp-cmdline",
-- "onsails/lspkind-nvim",
-- "L3MON4D3/LuaSnip",
-- },
-- config = function()
-- require("plugins.configs.cmp")
-- end,
-- })
-- Ghetto Way of Getting Fuzzy Finding for commands
use({
"hrsh7th/nvim-cmp",
even = "InsertEnter",
requires = {
"hrsh7th/cmp-cmdline",
},
config = function()
require("plugins.configs.cmp")
end,
})
-- Show code outline
use({
@ -384,13 +375,13 @@ return require("packer").startup({
})
-- Completions for /, :, ?
use({
"gelguy/wilder.nvim",
event = "BufEnter",
config = function()
require("plugins.configs.wilder")
end
})
-- use({
-- "gelguy/wilder.nvim",
-- event = "BufEnter",
-- config = function()
-- require("plugins.configs.wilder")
-- end
-- })
-- Leave at end!!!
-- Install and deploy packer plugins