Remove buggy ultisnips
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 46s
Details
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 46s
Details
This commit is contained in:
parent
3661bb6693
commit
74ce5c7cde
|
@ -11,7 +11,7 @@ cmp.setup({
|
||||||
-- configuration
|
-- configuration
|
||||||
snippet = {
|
snippet = {
|
||||||
expand = function(args)
|
expand = function(args)
|
||||||
vim.fn["UltiSnips#Anon"](args.body)
|
-- vim.fn["UltiSnips#Anon"](args.body)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ cmp.setup({
|
||||||
|
|
||||||
-- installed sources for code suggestion
|
-- installed sources for code suggestion
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
{ name = "ultisnips", keyword_length = 1 },
|
-- { name = "ultisnips", keyword_length = 1 },
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
{ name = "nvim_lsp", keyword_length = 2 },
|
{ name = "nvim_lsp", keyword_length = 2 },
|
||||||
{ name = "nvim_lsp_signature_help" },
|
{ name = "nvim_lsp_signature_help" },
|
||||||
|
@ -67,7 +67,7 @@ cmp.setup({
|
||||||
format = function(entry, item)
|
format = function(entry, item)
|
||||||
local menu_icon = {
|
local menu_icon = {
|
||||||
nvim_lsp = "λ",
|
nvim_lsp = "λ",
|
||||||
ultisnips = "⋗",
|
-- ultisnips = "⋗",
|
||||||
path = "🌐",
|
path = "🌐",
|
||||||
calc = "Σ",
|
calc = "Σ",
|
||||||
buffer = "📚",
|
buffer = "📚",
|
||||||
|
|
|
@ -59,7 +59,7 @@ return {
|
||||||
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
|
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
|
||||||
{ "tzachar/fuzzy.nvim", requires = { "nvim-telescope/telescope-fzf-native.nvim" } },
|
{ "tzachar/fuzzy.nvim", requires = { "nvim-telescope/telescope-fzf-native.nvim" } },
|
||||||
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
||||||
"quangnguyen30192/cmp-nvim-ultisnips",
|
-- "quangnguyen30192/cmp-nvim-ultisnips",
|
||||||
"mihaifm/bufstop",
|
"mihaifm/bufstop",
|
||||||
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
||||||
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
||||||
|
|
Loading…
Reference in New Issue