mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-12 21:51:13 +00:00
140 lines
5.4 KiB
Lua
140 lines
5.4 KiB
Lua
|
local fn = vim.fn
|
||
|
-- Automatically install packer
|
||
|
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
|
||
|
if fn.empty(fn.glob(install_path)) > 0 then
|
||
|
PACKER_BOOTSTRAP = fn.system({
|
||
|
"git",
|
||
|
"clone",
|
||
|
"--depth",
|
||
|
"1",
|
||
|
"https://github.com/wbthomason/packer.nvim",
|
||
|
install_path,
|
||
|
})
|
||
|
print("Installing packer close and reopen Neovim...")
|
||
|
vim.cmd([[packadd packer.nvim]])
|
||
|
end
|
||
|
|
||
|
-- Autocommand that reloads neovim whenever you save the plugins.lua file
|
||
|
-- vim.cmd([[
|
||
|
-- augroup packer_user_config
|
||
|
-- autocmd!
|
||
|
-- autocmd BufWritePost plugins.lua source <afile> | PackerSync
|
||
|
-- augroup end
|
||
|
-- ]])
|
||
|
|
||
|
-- Use a protected call so we don't error out on first use
|
||
|
local status_ok, packer = pcall(require, "packer")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
-- Have packer use a popup window
|
||
|
packer.init({
|
||
|
display = {
|
||
|
open_fn = function()
|
||
|
return require("packer.util").float({ border = "rounded" })
|
||
|
end,
|
||
|
},
|
||
|
})
|
||
|
|
||
|
-- Install your plugins here
|
||
|
return packer.startup(function(use)
|
||
|
-- Plugins
|
||
|
use({ "wbthomason/packer.nvim", commit = "6afb67460283f0e990d35d229fd38fdc04063e0a" })
|
||
|
use({ "nvim-lua/plenary.nvim", commit = "4b7e52044bbb84242158d977a50c4cbcd85070c7" })
|
||
|
use({ "windwp/nvim-autopairs", commit = "14cc2a4fc6243152ba085cc2059834113496c60a" })
|
||
|
use({ "numToStr/Comment.nvim", tag = "v0.6.1" })
|
||
|
use({ "JoosepAlviste/nvim-ts-context-commentstring", commit = "4d3a68c41a53add8804f471fcc49bb398fe8de08" })
|
||
|
use({ "kyazdani42/nvim-web-devicons", commit = "563f3635c2d8a7be7933b9e547f7c178ba0d4352" })
|
||
|
use({ "akinsho/bufferline.nvim", tag = "v2.*" })
|
||
|
use({ "moll/vim-bbye", commit = "25ef93ac5a87526111f43e5110675032dbcacf56" })
|
||
|
use({ "nvim-lualine/lualine.nvim", commit = "3362b28f917acc37538b1047f187ff1b5645ecdd" })
|
||
|
use({ "lewis6991/impatient.nvim", commit = "b842e16ecc1a700f62adb9802f8355b99b52a5a6" })
|
||
|
use({ "lukas-reineke/indent-blankline.nvim", tag = "v2.*" })
|
||
|
use({ "Pocco81/auto-save.nvim", commit = "2c7a2943340ee2a36c6a61db812418fca1f57866" })
|
||
|
use({ "gelguy/wilder.nvim", commit = "679f348dc90d80ff9ba0e7c470c40a4d038dcecf" })
|
||
|
use({ "romgrk/fzy-lua-native", commit = "085c7d262aa35cc55a8523e8c1618d398bf717a", run = "make" })
|
||
|
use({ "mg979/vim-visual-multi", tag = "v0.*" })
|
||
|
use({ "Shatur/neovim-session-manager", commit = "4005dac93f5cd1257792259ef4df6af0e3afc213" })
|
||
|
use({ "nvim-treesitter/nvim-treesitter", commit = "aebc6cf6bd4675ac86629f516d612ad5288f7868" })
|
||
|
use({
|
||
|
"nvim-neo-tree/neo-tree.nvim",
|
||
|
branch = "v2.x",
|
||
|
requires = { "MunifTanjim/nui.nvim", commit = "e9889bbd9919544697d497537acacd9c67d0de99" },
|
||
|
})
|
||
|
|
||
|
-- Colorschemes
|
||
|
use({ "folke/tokyonight.nvim", commit = "4092905fc570a721128af73f6bf78e5d47f5edce" })
|
||
|
use({ "EdenEast/nightfox.nvim", commit = "59c3dbcec362eff7794f1cb576d56fd8a3f2c8bb" })
|
||
|
|
||
|
-- cmp plugins
|
||
|
use({ "hrsh7th/nvim-cmp", commit = "2427d06b6508489547cd30b6e86b1c75df363411" })
|
||
|
use({ "hrsh7th/cmp-buffer", commit = "3022dbc9166796b644a841a02de8dd1cc1d311fa" })
|
||
|
use({ "hrsh7th/cmp-path", commit = "447c87cdd6e6d6a1d2488b1d43108bfa217f56e1" })
|
||
|
use({ "saadparwaiz1/cmp_luasnip", commit = "a9de941bcbda508d0a45d28ae366bb3f08db2e36" })
|
||
|
use({ "hrsh7th/cmp-nvim-lsp", commit = "affe808a5c56b71630f17aa7c38e15c59fd648a8" })
|
||
|
use({ "hrsh7th/cmp-nvim-lua", commit = "d276254e7198ab7d00f117e88e223b4bd8c02d21" })
|
||
|
|
||
|
-- snippets
|
||
|
use({ "L3MON4D3/LuaSnip", tag = "v1.*" })
|
||
|
use({ "rafamadriz/friendly-snippets", commit = "2be79d8a9b03d4175ba6b3d14b082680de1b31b1" })
|
||
|
|
||
|
-- LSP
|
||
|
use({ "neovim/nvim-lspconfig", commit = "af43c300d4134db3550089cd4df6c257e3734689" })
|
||
|
use({ "williamboman/nvim-lsp-installer", commit = "e9f13d7acaa60aff91c58b923002228668c8c9e6" })
|
||
|
use({ "jose-elias-alvarez/null-ls.nvim", commit = "c0c19f32b614b3921e17886c541c13a72748d450" })
|
||
|
use({ "RRethy/vim-illuminate", commit = "a2e8476af3f3e993bb0d6477438aad3096512e42" })
|
||
|
use({ "folke/trouble.nvim", commit = "929315ea5f146f1ce0e784c76c943ece6f36d786" })
|
||
|
|
||
|
-- Telescope
|
||
|
use({ "nvim-telescope/telescope.nvim", commit = "76ea9a898d3307244dce3573392dcf2cc38f340f" })
|
||
|
use({ "nvim-telescope/telescope-ui-select.nvim", commit = "62ea5e58c7bbe191297b983a9e7e89420f581369" })
|
||
|
use({
|
||
|
"nvim-telescope/telescope-fzf-native.nvim",
|
||
|
commit = "65c0ee3d4bb9cb696e262bca1ea5e9af3938fc90",
|
||
|
run = "make",
|
||
|
})
|
||
|
|
||
|
-- Git
|
||
|
use({ "lewis6991/gitsigns.nvim", tag = "v0.5*" })
|
||
|
use({ "sindrets/diffview.nvim", commit = "6baa30d0a6f63da254c2d2c0638a426166973976" })
|
||
|
use({ "f-person/git-blame.nvim", commit = "08e75b7061f4a654ef62b0cac43a9015c87744a2" })
|
||
|
|
||
|
-- DAP
|
||
|
use({ "mfussenegger/nvim-dap", tag = "0.3*" })
|
||
|
use({ "rcarriga/nvim-dap-ui", tag = "v2.*" })
|
||
|
use({ "ravenxrz/DAPInstall.nvim", commit = "8798b4c36d33723e7bba6ed6e2c202f84bb300de" })
|
||
|
use({ "theHamsta/nvim-dap-virtual-text", commit = "2971ce3e89b1711cc26e27f73d3f854b559a77d4" })
|
||
|
|
||
|
-- golang
|
||
|
use({ "ray-x/go.nvim", commit = "24270e540b96bcd6c0c8184532b93a5d4a55c38b" })
|
||
|
use({
|
||
|
"ray-x/guihua.lua",
|
||
|
commit = "baebba3ba0e621eb04f5ac32a946935fdf5f5b87",
|
||
|
run = "cd lua/fzy && make",
|
||
|
|
||
|
config = function()
|
||
|
require("guihua.maps").setup({
|
||
|
maps = { close_view = "<C-x>" },
|
||
|
})
|
||
|
end,
|
||
|
})
|
||
|
|
||
|
-- markdown
|
||
|
use({ "mzlogin/vim-markdown-toc", commit = "7ec05df27b4922830ace2246de36ac7e53bea1db" })
|
||
|
use({
|
||
|
"iamcco/markdown-preview.nvim",
|
||
|
run = "cd app && npm install",
|
||
|
setup = function()
|
||
|
vim.g.mkdp_filetypes = { "markdown" }
|
||
|
end,
|
||
|
ft = { "markdown" },
|
||
|
})
|
||
|
|
||
|
-- 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)
|