mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 20:24:59 +01:00
57 lines
1.2 KiB
Lua
57 lines
1.2 KiB
Lua
-- Ensure packer in installed
|
|
local ensure_packer = function()
|
|
local fn = vim.fn
|
|
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
|
|
if fn.empty(fn.glob(install_path)) > 0 then
|
|
fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path })
|
|
vim.cmd([[packadd packer.nvim]])
|
|
return true
|
|
end
|
|
return false
|
|
end
|
|
|
|
local packer_bootstrap = ensure_packer()
|
|
|
|
-- Actual plugins
|
|
|
|
local use = require("packer").use
|
|
|
|
require("packer").startup(function()
|
|
-- Packer package manager
|
|
use("wbthomason/packer.nvim")
|
|
|
|
-- OneDark color scheme
|
|
use("navarasu/onedark.nvim")
|
|
|
|
-- LSP Stuff
|
|
use({
|
|
"williamboman/mason.nvim",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"neovim/nvim-lspconfig",
|
|
})
|
|
|
|
-- Autocomplete
|
|
use("hrsh7th/cmp-nvim-lsp")
|
|
use("hrsh7th/cmp-buffer")
|
|
use("hrsh7th/cmp-path")
|
|
use("hrsh7th/cmp-cmdline")
|
|
use("hrsh7th/nvim-cmp")
|
|
use("hrsh7th/cmp-vsnip")
|
|
use("hrsh7th/vim-vsnip")
|
|
|
|
-- Treesitter
|
|
use("nvim-treesitter/nvim-treesitter")
|
|
|
|
|
|
-- Telescope
|
|
use {
|
|
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
|
requires = { { 'nvim-lua/plenary.nvim' } }
|
|
}
|
|
|
|
-- Automatically set up configuration after cloning packer.nvim
|
|
if packer_bootstrap then
|
|
require("packer").sync()
|
|
end
|
|
end)
|