init.lua/lua/sofi/packer.lua

41 lines
790 B
Lua
Raw Normal View History

2024-01-21 21:52:43 +00:00
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use 'mbbill/undotree'
use 'tpope/vim-fugitive'
use {
'nvim-telescope/telescope.nvim', tag = '0.1.5',
requires = { {'nvim-lua/plenary.nvim'} }
}
use {
'rose-pine/neovim', as = 'rose-pine',
config = function()
vim.cmd('colorscheme rose-pine')
end
}
use {
'nvim-treesitter/nvim-treesitter',
{
run = ':TSUpdate'
}
}
2024-01-22 18:57:00 +00:00
use {
'windwp/nvim-autopairs',
config = function()
require('nvim-autopairs').setup {}
end
}
2024-01-21 21:52:43 +00:00
use 'neovim/nvim-lspconfig'
use 'williamboman/mason.nvim'
use 'williamboman/mason-lspconfig.nvim'
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-nvim-lsp'
use 'L3MON4D3/LuaSnip'
end)