From: Tobias Sachs Date: Sat, 3 Dec 2022 13:06:05 +0000 (+0100) Subject: Merge branch 'main' of ssh://src.twobees.de/git/dotfiles X-Git-Url: https://src.twobees.de/?p=dotfiles.git;a=commitdiff_plain;h=01a1091a651166f7fb2e0fa203414372746dc4c1 Merge branch 'main' of ssh://src.twobees.de/git/dotfiles --- 01a1091a651166f7fb2e0fa203414372746dc4c1 diff --cc stow/nvim/.config/nvim/lua/plugin_mgr.lua index be148ee,f69eee5..357d30c --- a/stow/nvim/.config/nvim/lua/plugin_mgr.lua +++ b/stow/nvim/.config/nvim/lua/plugin_mgr.lua @@@ -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()