mirror of
https://github.com/NvChad/NvChad.git
synced 2024-10-31 21:20:15 +00:00
22 lines
590 B
Lua
22 lines
590 B
Lua
require "core"
|
|
require "core.options"
|
|
|
|
require("core.utils").load_mappings()
|
|
|
|
-- setup packer + plugins
|
|
local fn = vim.fn
|
|
local install_path = fn.stdpath "data" .. "/site/pack/packer/opt/packer.nvim"
|
|
|
|
if fn.empty(fn.glob(install_path)) > 0 then
|
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "#1e222a" })
|
|
print "Cloning packer .."
|
|
fn.system { "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path }
|
|
|
|
-- install plugins + compile their configs
|
|
vim.cmd "packadd packer.nvim"
|
|
require "plugins"
|
|
vim.cmd "PackerSync"
|
|
end
|
|
|
|
pcall(require, "custom")
|