mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-19 02:46:06 -07:00
31 lines
778 B
Lua
31 lines
778 B
Lua
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
|
|
|
return require('packer').startup(function(use)
|
|
-- Packer can manage itself
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
-- Colors
|
|
use ('dracula/vim')
|
|
|
|
-- IDE
|
|
use('nvim-lua/plenary.nvim')
|
|
use("nvim-treesitter/nvim-treesitter", {
|
|
run = ":TSUpdate"
|
|
})
|
|
use ('nvim-telescope/telescope.nvim')
|
|
use ('nvim-telescope/telescope-project.nvim')
|
|
|
|
use ('ThePrimeagen/harpoon')
|
|
use ('kdheepak/lazygit.nvim')
|
|
use ('neovim/nvim-lspconfig')
|
|
use ('hrsh7th/cmp-nvim-lsp')
|
|
use ('hrsh7th/cmp-buffer')
|
|
use ('hrsh7th/cmp-path')
|
|
use ('hrsh7th/cmp-cmdline')
|
|
use ('hrsh7th/nvim-cmp')
|
|
use ('L3MON4D3/LuaSnip')
|
|
use ('saadparwaiz1/cmp_luasnip')
|
|
|
|
|
|
end)
|