diff options
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua new file mode 100644 index 0000000..11cbd16 --- /dev/null +++ b/lua/plugins.lua @@ -0,0 +1,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) |