new file: init.lua

new file:   lua/ale.lua
	new file:   lua/config.lua
	new file:   lua/keybinds.lua
	new file:   lua/nvim_lsp.lua
	new file:   lua/packer_check.lua
	new file:   lua/plugins.lua
	new file:   lua/save_buffer_position.lua
	new file:   plugin/packer_compiled.lua
This commit is contained in:
2021-11-01 12:13:04 -05:00
commit 254e9c04ac
9 changed files with 979 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
local fn = vim.fn
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
if fn.empty(fn.glob(install_path)) > 0 then
fn.system({"git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path})
vim.cmd "packadd packer.nvim"
vim.cmd ":PackerSync"
end