]> src.twobees.de Git - dotfiles.git/blobdiff - stow/nvim/.config/nvim/lua/plugin_mgr.lua
add fugitive
[dotfiles.git] / stow / nvim / .config / nvim / lua / plugin_mgr.lua
index be148ee328d1b84267b3625c1caf04473320478f..2c0310423555c30d29b5d90e8025485415f6a10a 100644 (file)
@@ -37,12 +37,25 @@ return require('packer').startup(function(use)
             {'saadparwaiz1/cmp_luasnip'},
             {'hrsh7th/cmp-nvim-lsp'},
             {'hrsh7th/cmp-nvim-lua'},
+
+            -- Snippets
+            {'L3MON4D3/LuaSnip'},
+            {'rafamadriz/friendly-snippets'},
+
+
+            -- git 
+            { 'tpope/vim-fugitive' },
         }
     }
 
     -- complition stuff
     use { 'hrsh7th/cmp-cmdline' }
 
+    use {
+        'nvim-telescope/telescope.nvim', branch = '0.1.x',
+        requires = { {'nvim-lua/plenary.nvim'} }
+    }
+
     -- Automatically set up configuration after cloning packer.nvim
     if packer_bootstrap then
         require('packer').sync()