diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2022-11-20 20:33:13 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2022-11-20 20:33:13 +0000 |
| commit | 6b1b61f98813a58286e099d92767e01c2d40bc18 (patch) | |
| tree | a3613fba312e0f324bdbca28ec3d3d0b5e6f6e13 /vim/nvim/lua | |
| parent | 6a0e18aab79cefa8cd4917e9a6d121349f41eb3f (diff) | |
Redo deploy script
Diffstat (limited to 'vim/nvim/lua')
| -rw-r--r-- | vim/nvim/lua/plugins.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vim/nvim/lua/plugins.lua b/vim/nvim/lua/plugins.lua new file mode 100644 index 0000000..a9d98c9 --- /dev/null +++ b/vim/nvim/lua/plugins.lua @@ -0,0 +1,24 @@ +return require('packer').startup(function(use) + use 'wbthomason/packer.nvim' + use 'vim-airline/vim-airline' + use 'vim-airline/vim-airline-themes' + use 'neovim/nvim-lspconfig' + use {'quick-lint/quick-lint-js', rtp = 'plugin/vim/quick-lint-js.vim', tag = '2.10.0', opt = true} + use 'hrsh7th/nvim-cmp' -- Autocompletion plugin + use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp + use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp + use 'onsails/lspkind.nvim' + use 'L3MON4D3/LuaSnip' -- Snippets plugin + use { + "folke/trouble.nvim", + requires = "kyazdani42/nvim-web-devicons", + config = function() + require("trouble").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + end + } + use "p00f/clangd_extensions.nvim" +end) |
