]> src.twobees.de Git - dotfiles.git/blobdiff - stow/nvim/.config/nvim/lua/plugin_mgr.lua
../..
[dotfiles.git] / stow / nvim / .config / nvim / lua / plugin_mgr.lua
index be148ee328d1b84267b3625c1caf04473320478f..d338931a92cbe772c28f669925bc32b507de06a8 100644 (file)
@@ -13,7 +13,14 @@ local packer_bootstrap = ensure_packer()
 
 return require('packer').startup(function(use)
     use { 'wbthomason/packer.nvim' }
-    use { 'catppuccin/nvim', as = 'catppuccin' }
+    use({
+        'rose-pine/neovim',
+        as = 'rose-pine',
+        config = function()
+            vim.cmd('colorscheme rose-pine')
+        end
+    })
+    use { 'romainl/Apprentice' }
     use { 'folke/tokyonight.nvim' }
     use { 'unblevable/quick-scope'}
     use { 'onsails/lspkind.nvim' }
@@ -37,11 +44,24 @@ return require('packer').startup(function(use)
             {'saadparwaiz1/cmp_luasnip'},
             {'hrsh7th/cmp-nvim-lsp'},
             {'hrsh7th/cmp-nvim-lua'},
+
+            -- Snippets
+            {'L3MON4D3/LuaSnip'},
+            {'rafamadriz/friendly-snippets'},
+
         }
     }
 
-    -- complition stuff
-    use { 'hrsh7th/cmp-cmdline' }
+    -- git 
+    use { 'tpope/vim-fugitive' }
+
+    -- format
+    use { 'sbdchd/neoformat' }
+
+    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