aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins.lua
blob: 11cbd16e81a0015889b46465edbc5f2df4148564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
-- 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)
  use { 'wbthomason/packer.nvim', opt = true }

  use { 'tanvirtin/monokai.nvim' }
end)