dotfiles/lua/plugins.lua

48 lines
1.1 KiB
Lua
Raw Normal View History

2022-02-20 11:10:47 +00:00
local fn = vim.fn
local cmd = vim.cmd
-- Boostrap Packer
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
local packer_bootstrap
if fn.empty(fn.glob(install_path)) > 0 then
packer_bootstrap = fn.system({'git', 'clone','https://github.com/wbthomason/packer.nvim', install_path})
end
-- Rerun PackerSync everytime plugins.lua is updated
cmd([[
augroup packer_user_config
autocmd!
autocmd BufWritePost plugins.lua source <afile> | PackerSync
augroup end
]])
-- Initialize pluggins
return require('packer').startup(function(use)
-- Let Packer manage itself
use('wbthomason/packer.nvim')
2022-02-20 11:25:12 +00:00
-- Themes
use('altercation/vim-colors-solarized')
2022-02-20 12:08:57 +00:00
-- session handling
use('tpope/vim-obsession')
use('dhruvasagar/vim-prosession')
2022-02-20 12:19:04 +00:00
-- status line
use {
'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function()
require('lualine').setup()
end
}
2022-02-20 11:11:20 +00:00
-- git commands
use('tpope/vim-fugitive')
2022-02-20 11:10:47 +00:00
if packer_bootstrap then
require('packer').sync()
end
end)