aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins.lua
blob: cfc4e08d5035cb0a1feaee1233949b7cada2ed21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-- 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 'EdenEast/nightfox.nvim'

  use { 'nvim-lualine/lualine.nvim' }
end)