55 lines
1.4 KiB
Lua
55 lines
1.4 KiB
Lua
-- auto install packer if not 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() -- true if packer was just installed
|
|
|
|
-- autocommand that reloads neovim and installs/updates/removes plugins
|
|
-- when file is saved
|
|
vim.cmd([[
|
|
augroup packer_user_config
|
|
autocmd!
|
|
autocmd BufWritePost plugins-setup.lua source <afile> | PackerSync
|
|
augroup end
|
|
]])
|
|
|
|
-- import packer safely
|
|
local status, packer = pcall(require, "packer")
|
|
if not status then
|
|
return
|
|
end
|
|
|
|
-- add list of plugins to install
|
|
return packer.startup(function(use)
|
|
-- packer can manage itself
|
|
use("wbthomason/packer.nvim")
|
|
|
|
use("navarasu/onedark.nvim")
|
|
|
|
-- file explorer
|
|
use("nvim-tree/nvim-tree.lua")
|
|
|
|
-- vs-code like icons
|
|
use("nvim-tree/nvim-web-devicons")
|
|
|
|
-- statusline
|
|
use("nvim-lualine/lualine.nvim")
|
|
|
|
-- Colorizer
|
|
use("norcalli/nvim-colorizer.lua")
|
|
|
|
-- Codeium
|
|
use("Exafunction/codeium.vim")
|
|
|
|
if packer_bootstrap then
|
|
require("packer").sync()
|
|
end
|
|
end)
|