mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-10-31 23:11:13 +00:00
138 lines
5.4 KiB
Lua
138 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
|
|
-- ]])
|
|
|
|
local status_ok, packer = pcall(require, "packer")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
packer.init({
|
|
display = {
|
|
open_fn = function()
|
|
return require("packer.util").float({ border = "rounded" })
|
|
end,
|
|
},
|
|
})
|
|
|
|
return packer.startup(function(use)
|
|
-- Plugins
|
|
use({ "wbthomason/packer.nvim", commit = "6afb67460283f0e990d35d229fd38fdc04063e0a" })
|
|
use({ "nvim-lua/plenary.nvim", commit = "4b7e52044bbb84242158d977a50c4cbcd85070c7" })
|
|
use({ "windwp/nvim-autopairs", commit = "6b6e35fc9aca1030a74cc022220bc22ea6c5daf4" })
|
|
use({ "numToStr/Comment.nvim", tag = "v0.*" })
|
|
use({ "JoosepAlviste/nvim-ts-context-commentstring", commit = "32d9627123321db65a4f158b72b757bcaef1a3f4" })
|
|
use({ "kyazdani42/nvim-web-devicons", commit = "9061e2d355ecaa2b588b71a35e7a11358a7e51e1" })
|
|
use({ "akinsho/bufferline.nvim", tag = "v3.*" })
|
|
use({ "moll/vim-bbye", commit = "25ef93ac5a87526111f43e5110675032dbcacf56" })
|
|
use({ "nvim-lualine/lualine.nvim", commit = "3325d5d43a7a2bc9baeef2b7e58e1d915278beaf" })
|
|
use({ "lewis6991/impatient.nvim", commit = "b842e16ecc1a700f62adb9802f8355b99b52a5a6" })
|
|
use({ "lukas-reineke/indent-blankline.nvim", tag = "v2.*" })
|
|
use({ "nvim-zh/auto-save.nvim", commit = "4b59610e1318f8a89501cee9d47a0e8650f0a4d5" })
|
|
use({ "gelguy/wilder.nvim", commit = "679f348dc90d80ff9ba0e7c470c40a4d038dcecf" })
|
|
use({ "romgrk/fzy-lua-native", commit = "085c7d262aa35cc55a8523e8c1618d398bf717a7", run = "make" })
|
|
use({ "mg979/vim-visual-multi", tag = "v0.*" })
|
|
use({ "Shatur/neovim-session-manager", commit = "4005dac93f5cd1257792259ef4df6af0e3afc213" })
|
|
use({ "nvim-treesitter/nvim-treesitter", commit = "7709eb4b47b8ee19e760aa2771c5735fda2798e1" })
|
|
use({ "ray-x/sad.nvim", commit = "01b7d84f4f73c8963f5933f09e88c833757bc7d8" })
|
|
use({
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v2.x",
|
|
requires = { "MunifTanjim/nui.nvim", commit = "d12a6977846b2fa978bff89b439e509320854e10" },
|
|
})
|
|
|
|
-- Colorschemes
|
|
use({ "folke/tokyonight.nvim", commit = "29e2c689c10679f723ae1deadf7f0067d394a545" })
|
|
|
|
-- cmp plugins
|
|
use({ "hrsh7th/nvim-cmp", commit = "9bb8ee6e2d6ab3c8cc53323b79f05886bc722faa" })
|
|
use({ "hrsh7th/cmp-buffer", commit = "3022dbc9166796b644a841a02de8dd1cc1d311fa" })
|
|
use({ "hrsh7th/cmp-path", commit = "91ff86cd9c29299a64f968ebb45846c485725f23" })
|
|
use({ "saadparwaiz1/cmp_luasnip", commit = "18095520391186d634a0045dacaa346291096566" })
|
|
use({ "hrsh7th/cmp-nvim-lsp", commit = "78924d1d677b29b3d1fe429864185341724ee5a2" })
|
|
|
|
-- Snippets
|
|
use({ "L3MON4D3/LuaSnip", tag = "v1.*" })
|
|
use({ "rafamadriz/friendly-snippets", commit = "c93311fbcc840210a2c0db574177d84a35a2c9c1" })
|
|
|
|
-- LSP
|
|
use({ "neovim/nvim-lspconfig", commit = "5f4b1fa83c80f43e434c1fb227967dac9ad8f44c" })
|
|
use({ "williamboman/mason.nvim", commit = "4bdfe6795bc4595f3b37f90f2c2e6b9bfc2aa588" })
|
|
use({ "williamboman/mason-lspconfig.nvim", commit = "a910b4d50f7a32d2f9057d636418a16843094b7c" })
|
|
use({ "jose-elias-alvarez/null-ls.nvim", commit = "f1add2302e6a01531a007c51054392d2029dbed4" })
|
|
use({ "RRethy/vim-illuminate", commit = "eb67b1317df846cb12091c43e7c555f915f56578" })
|
|
use({ "folke/trouble.nvim", commit = "ed65f84abc4a1e5d8f368d7e02601fc0357ea15e" })
|
|
use({ "simrat39/symbols-outline.nvim", commit = "6a3ed24c5631da7a5d418bced57c16b32af7747c" })
|
|
|
|
-- Telescope
|
|
use({ "nvim-telescope/telescope.nvim", commit = "4bd4205028d6588cf2e0a1346687a6039b0f0a7c" })
|
|
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.*" })
|
|
use({ "sindrets/diffview.nvim", commit = "94a3422415a092db1f2e00af5bd7db4ec1c6b8d7" })
|
|
use({ "f-person/git-blame.nvim", commit = "7c498272d0f97c583fc3a92f196231a90455eb19" })
|
|
|
|
-- DAP
|
|
use({ "mfussenegger/nvim-dap", tag = "0.*" })
|
|
use({ "rcarriga/nvim-dap-ui", tag = "v2.*" })
|
|
use({ "ravenxrz/DAPInstall.nvim", commit = "8798b4c36d33723e7bba6ed6e2c202f84bb300de" })
|
|
use({ "theHamsta/nvim-dap-virtual-text", commit = "2971ce3e89b1711cc26e27f73d3f854b559a77d4" })
|
|
|
|
-- Go
|
|
use({ "ray-x/go.nvim", commit = "825f20b0366302f0d587b2a1280d4690fe2bbc27" })
|
|
use({
|
|
"ray-x/guihua.lua",
|
|
commit = "2fce8a8b462cf6599d9422efb157773126e1c7ce",
|
|
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)
|