nvim/lua/plugins.lua

23 lines
771 B
Lua
Raw Normal View History

2022-11-22 13:39:10 +01:00
require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
2022-11-24 13:33:16 +01:00
use 'neovim/lsp'
2022-11-22 13:39:10 +01:00
use 'neovim/nvim-lspconfig'
use { 'nvim-treesitter/nvim-treesitter', run = function()
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
ts_update()
end,
}
2022-11-24 13:33:16 +01:00
use 'williamboman/mason.nvim'
use 'williamboman/mason-lspconfig.nvim'
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-nvim-lsp'
2022-11-22 13:39:10 +01:00
use { 'nvim-lualine/lualine.nvim', requires = { 'kyazdani42/nvim-web-devicons', opt = true } }
2022-11-24 13:33:16 +01:00
use 'numToStr/Comment.nvim'
2022-11-22 13:39:10 +01:00
-- Automatically set up your configuration after cloning packer.nvim
-- Put this at the end after all plugins
if packer_bootstrap then
require('packer').sync()
end
end)