Initial NeoVIM config

Signed-off-by: Valentin Popov <valentin@popov.link>
This commit is contained in:
2023-03-30 15:17:25 +04:00
parent 6f49229c3f
commit a2349e19a8
3 changed files with 20 additions and 0 deletions

8
lua/plugins/init.lua Normal file
View File

@ -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)