2024-10-24 22:40:03 -04:00
|
|
|
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
|
|
|
|
|
|
|
-- Only required if you have packer configured as `opt`
|
|
|
|
vim.cmd [[packadd packer.nvim]]
|
|
|
|
|
|
|
|
return require('packer').startup(function(use)
|
|
|
|
-- Packer can manage itself
|
|
|
|
use('wbthomason/packer.nvim')
|
|
|
|
|
|
|
|
|
|
|
|
use('olimorris/onedarkpro.nvim')
|
2024-12-20 20:13:09 -05:00
|
|
|
use('SapphirusBeryl/nightfox.nvim')
|
2024-10-24 22:40:03 -04:00
|
|
|
use('nvim-tree/nvim-web-devicons')
|
|
|
|
|
|
|
|
use('nvim-treesitter/playground');
|
|
|
|
use('nvim-treesitter/nvim-treesitter', {run = ':TSUpdate'})
|
|
|
|
|
|
|
|
use('mbbill/undotree')
|
|
|
|
|
|
|
|
use('williamboman/mason.nvim')
|
|
|
|
use('williamboman/mason-lspconfig.nvim')
|
|
|
|
|
|
|
|
|
|
|
|
use {
|
|
|
|
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
|
|
|
requires = { {'nvim-lua/plenary.nvim'} }
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
|
|
branch = "v3.x",
|
|
|
|
requires = {
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
|
|
"MunifTanjim/nui.nvim",
|
|
|
|
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
'VonHeikemen/lsp-zero.nvim',
|
|
|
|
branch = 'v3.x',
|
|
|
|
requires = {
|
|
|
|
--- Uncomment the two plugins below if you want to manage the language servers from neovim
|
|
|
|
-- {'williamboman/mason.nvim'},
|
|
|
|
-- {'williamboman/mason-lspconfig.nvim'},
|
|
|
|
|
|
|
|
-- LSP Support
|
|
|
|
{'neovim/nvim-lspconfig'},
|
|
|
|
-- Autocompletion
|
|
|
|
{'hrsh7th/nvim-cmp'},
|
|
|
|
{'hrsh7th/cmp-nvim-lsp'},
|
|
|
|
{'L3MON4D3/LuaSnip'},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
"ray-x/lsp_signature.nvim",
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
'tanvirtin/vgit.nvim',
|
|
|
|
requires = {
|
|
|
|
'nvim-lua/plenary.nvim'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end)
|