mirror of
https://github.com/KevinMidboe/dotfiles.git
synced 2025-10-29 01:20:20 +00:00
14 lines
410 B
Lua
14 lines
410 B
Lua
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
|
|
|
-- Only required if you have packer configured as `opt`
|
|
vim.cmd [[packadd packer.nvim]]
|
|
|
|
return require('packer').startup(function(use)
|
|
-- Packer can manage itself
|
|
use 'wbthomason/packer.nvim'
|
|
use 'wakatime/vim-wakatime'
|
|
|
|
use 'nvim-tree/nvim-web-devicons'
|
|
use {'romgrk/barbar.nvim', wants = 'nvim-web-devicons'}
|
|
end)
|