14 lines
356 B
Lua
14 lines
356 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 'rktjmp/lush.nvim'
|
|
use '~/Dotfiles/nvim/theme/cyberqueer'
|
|
}
|
|
|
|
end)
|