diff options
| author | yuzu-eva <stevenhu@web.de> | 2022-05-28 18:48:20 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2022-05-28 18:48:20 +0200 |
| commit | 6979654c01fd7d3e68408b15aaed478a71553629 (patch) | |
| tree | 328e9cfed78fe9d3ec470f6b0284465927689489 /.config/nvim/lua/user/plugins.lua | |
| parent | 25d7bd9684da7785290ecdb8760fb9e16a950adb (diff) | |
added luasnip
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
| -rw-r--r-- | .config/nvim/lua/user/plugins.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index 657aedf..7f81291 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -1,6 +1,5 @@ require('packer').startup(function() use { 'wbthomason/packer.nvim' } -- Let packer manage itself - use { 'tpope/vim-commentary' } use { 'tpope/vim-surround' } use { 'tpope/vim-eunuch' } @@ -57,6 +56,7 @@ require('packer').startup(function() 'hrsh7th/cmp-buffer', 'jessarcher/cmp-path', 'hrsh7th/cmp-nvim-lua', + 'L3MON4D3/LuaSnip', 'onsails/lspkind-nvim', 'hrsh7th/cmp-nvim-lsp-signature-help', }, @@ -82,4 +82,10 @@ require('packer').startup(function() require('user.plugins.lualine') end } + use { + 'L3MON4D3/LuaSnip', + config = function() + require('user.plugins.luasnip') + end + } end) |
