nvim: treesitter overhaul and actually removed luasnip

This commit is contained in:
PowerUser64 2021-09-25 02:19:19 -07:00
parent 6fd7e97780
commit 16b13b9f7a
3 changed files with 38 additions and 50 deletions

View file

@ -9,6 +9,7 @@ end
-- }
return require('packer').startup(function()
-- Packer
use { -- packer
'wbthomason/packer.nvim'
@ -73,7 +74,6 @@ return require('packer').startup(function()
require('blake.lsp').cmp()
end,
requires = { -- nvim-cmp sources
-- "saadparwaiz1/cmp_luasnip", --luasnip integration
"hrsh7th/cmp-path",
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
@ -84,11 +84,6 @@ return require('packer').startup(function()
"hrsh7th/cmp-look",
}
}
-- use { -- code snippits
-- "L3MON4D3/LuaSnip",
-- -- "hrsh7th/vim-vsnip",
-- -- "rafamadriz/friendly-snippets",
-- }
use { -- function parameter previews
"ray-x/lsp_signature.nvim",
after = "nvim-lspconfig",
@ -179,6 +174,7 @@ return require('packer').startup(function()
use { -- cheat.sh integration
"dbeniamine/cheat.sh-vim",
}
end)
-- vim:fdm=marker:fmr={,}:expandtab:tabstop=3:sw=3