]> src.twobees.de Git - dotfiles.git/commitdiff
Merge branch 'main' of ssh://src.twobees.de/git/dotfiles
authorTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sat, 3 Dec 2022 13:06:05 +0000 (14:06 +0100)
committerTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sat, 3 Dec 2022 13:06:05 +0000 (14:06 +0100)
1  2 
stow/nvim/.config/nvim/lua/plugin_mgr.lua

index be148ee328d1b84267b3625c1caf04473320478f,f69eee5c9b821a1779363eba41ff62a2881b87f1..357d30c846b3af7752db53d4962c883b0d786988
@@@ -22,27 -24,19 +22,32 @@@ return require('packer').startup(functi
          'nvim-treesitter/nvim-treesitter',
          run = ':TSUpdate'
      }
 +    use {
 +        'VonHeikemen/lsp-zero.nvim',
 +        requires = {
 +            -- LSP Support
 +            {'neovim/nvim-lspconfig'},
 +            {'williamboman/mason.nvim'},
 +            {'williamboman/mason-lspconfig.nvim'},
 +
 +            -- Autocompletion
 +            {'hrsh7th/nvim-cmp'},
 +            {'hrsh7th/cmp-buffer'},
 +            {'hrsh7th/cmp-path'},
 +            {'saadparwaiz1/cmp_luasnip'},
 +            {'hrsh7th/cmp-nvim-lsp'},
 +            {'hrsh7th/cmp-nvim-lua'},
 +        }
 +    }
  
      -- complition stuff
 -    use { 'hrsh7th/cmp-nvim-lsp' }
 -    use { 'hrsh7th/cmp-buffer' }
 -    use { 'hrsh7th/cmp-path' }
      use { 'hrsh7th/cmp-cmdline' }
 -    use { 'hrsh7th/nvim-cmp' }
  
+     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()