diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-30 14:17:25 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-30 14:17:25 +0300 |
commit | a2349e19a8b6b923a27abdb6f6a98eddbfb05f11 (patch) | |
tree | d3842b42c631779969fdf8404f6b13395245d2fb /lua | |
parent | 6f49229c3ff159cbed597a45cedbafe39a1249e9 (diff) | |
download | nvim-config-a2349e19a8b6b923a27abdb6f6a98eddbfb05f11.tar.xz nvim-config-a2349e19a8b6b923a27abdb6f6a98eddbfb05f11.zip |
Initial NeoVIM config
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/plugins/init.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua new file mode 100644 index 0000000..31702eb --- /dev/null +++ b/lua/plugins/init.lua @@ -0,0 +1,8 @@ +-- 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' +end) |