.config/nvim/lua/plugins/completion.lua

changeset 1139
1359a563b5ce
parent 1132
532c7964b23f
child 1143
5c37b939b296
equal deleted inserted replaced
1138:12ac68eb173f 1139:1359a563b5ce
7 "hrsh7th/cmp-buffer", 7 "hrsh7th/cmp-buffer",
8 "hrsh7th/cmp-calc", 8 "hrsh7th/cmp-calc",
9 "hrsh7th/cmp-nvim-lsp", 9 "hrsh7th/cmp-nvim-lsp",
10 "hrsh7th/cmp-nvim-lua", 10 "hrsh7th/cmp-nvim-lua",
11 "hrsh7th/cmp-path", 11 "hrsh7th/cmp-path",
12 { "L3MON4D3/LuaSnip", opts = { history = true, delete_check_events = "TextChanged" } },
13 "quangnguyen30192/cmp-nvim-tags", 12 "quangnguyen30192/cmp-nvim-tags",
14 }, 13 },
15 config = function() 14 config = function()
16 local cmp = require("cmp") 15 local cmp = require("cmp")
17 local luasnip = require("luasnip") 16 local luasnip = require("luasnip")
87 { name = "calc" }, 86 { name = "calc" },
88 }), 87 }),
89 }) 88 })
90 end, 89 end,
91 }, 90 },
92 91 {
92 "L3MON4D3/LuaSnip",
93 lazy = true,
94 build = "make install_jsregexp",
95 opts = {
96 history = true,
97 delete_check_events = "TextChanged",
98 },
99 },
93 { 100 {
94 "ray-x/lsp_signature.nvim", 101 "ray-x/lsp_signature.nvim",
95 branch = "master", 102 branch = "master",
96 event = { "LspAttach" }, 103 event = { "LspAttach" },
97 opts = { 104 opts = {

mercurial