2022-02-08 21:39:40 +01:00
|
|
|
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
|
2022-06-09 16:25:51 +02:00
|
|
|
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]]
|
2022-02-08 21:39:40 +01:00
|
|
|
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
|
2022-06-09 16:25:51 +02:00
|
|
|
return
|
2022-02-08 21:39:40 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Have packer use a popup window
|
|
|
|
packer.init {
|
2022-06-09 16:25:51 +02:00
|
|
|
display = {
|
|
|
|
open_fn = function()
|
|
|
|
return require("packer.util").float { border = "rounded" }
|
|
|
|
end,
|
|
|
|
},
|
2022-02-08 21:39:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Install your plugins here
|
|
|
|
return packer.startup(function(use)
|
2022-06-09 16:25:51 +02:00
|
|
|
-- My plugins here
|
|
|
|
use "wbthomason/packer.nvim" -- Have packer manage itself
|
|
|
|
use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim
|
|
|
|
use "nvim-lua/plenary.nvim" -- Useful lua functions used ny lots of plugins
|
|
|
|
|
|
|
|
-- Colorschemes
|
|
|
|
use "shaunsingh/nord.nvim"
|
|
|
|
-- cmp plugins
|
|
|
|
use "hrsh7th/nvim-cmp" -- The completion plugin
|
|
|
|
use "hrsh7th/cmp-buffer" -- buffer completions
|
|
|
|
use "hrsh7th/cmp-path" -- path completions
|
|
|
|
use "hrsh7th/cmp-cmdline" -- cmdline completions
|
|
|
|
use "saadparwaiz1/cmp_luasnip" -- snippet completions
|
|
|
|
use "hrsh7th/cmp-nvim-lsp"
|
|
|
|
|
|
|
|
-- snippets
|
|
|
|
use "L3MON4D3/LuaSnip" --snippet engine
|
|
|
|
use "rafamadriz/friendly-snippets" -- a bunch of snippets to use
|
2023-04-09 23:12:45 +02:00
|
|
|
|
|
|
|
-- LSP
|
|
|
|
use "neovim/nvim-lspconfig" -- enable LSP
|
|
|
|
use "williamboman/mason.nvim" -- simple to use language server installer
|
|
|
|
use "williamboman/mason-lspconfig.nvim" -- simple to use language server installer
|
|
|
|
use 'jose-elias-alvarez/null-ls.nvim' -- LSP diagnostics and code actions
|
2022-06-09 16:25:51 +02:00
|
|
|
|
|
|
|
-- Telescope
|
|
|
|
use "nvim-telescope/telescope.nvim"
|
|
|
|
use 'nvim-telescope/telescope-media-files.nvim'
|
|
|
|
|
|
|
|
-- Treesitter
|
2023-04-09 23:12:45 +02:00
|
|
|
use {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
run = ":TSUpdate",
|
2022-06-09 16:25:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
'nvim-lualine/lualine.nvim',
|
|
|
|
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
|
|
|
|
}
|
|
|
|
|
|
|
|
-- nvim-tree
|
|
|
|
use {
|
|
|
|
'kyazdani42/nvim-tree.lua',
|
|
|
|
requires = {
|
|
|
|
'kyazdani42/nvim-web-devicons', -- optional, for file icon
|
|
|
|
},
|
|
|
|
--config = function() require'nvim-tree'.setup {} end
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2022-10-12 11:51:43 +02:00
|
|
|
use 'lewis6991/gitsigns.nvim'
|
2022-06-09 16:25:51 +02:00
|
|
|
|
|
|
|
-- Bufferline
|
2022-10-20 20:37:08 +02:00
|
|
|
use 'akinsho/bufferline.nvim'
|
|
|
|
use 'moll/vim-bbye'
|
2022-06-09 16:25:51 +02:00
|
|
|
|
2022-10-20 20:37:08 +02:00
|
|
|
-- VimWiki
|
|
|
|
use { 'vimwiki/vimwiki', branch='dev'}
|
2022-06-09 16:25:51 +02:00
|
|
|
|
2023-04-16 19:15:01 +02:00
|
|
|
-- dicord fuckery
|
|
|
|
use 'andweeb/presence.nvim'
|
|
|
|
|
2024-09-22 22:50:15 +02:00
|
|
|
-- LaTeX
|
|
|
|
use 'lervag/vimtex'
|
|
|
|
|
2022-06-09 16:25:51 +02:00
|
|
|
-- 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
|
2022-02-08 21:39:40 +01:00
|
|
|
end)
|