diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-30 14:55:02 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-30 14:55:02 +0300 |
commit | 865c863f795ce3022f57f15e795bfa0d2172b3a0 (patch) | |
tree | ffa6a2f1f008470d79fb194faa92cc17e8638095 /lua/plugins.lua | |
parent | de87a959a9017cdeedaacbe2cd7f92e9ccc62495 (diff) | |
download | nvim-config-865c863f795ce3022f57f15e795bfa0d2172b3a0.tar.xz nvim-config-865c863f795ce3022f57f15e795bfa0d2172b3a0.zip |
Plugged in the theme
Signed-off-by: Valentin Popov <valentin@popov.link>
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) |