-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit.lua
35 lines (28 loc) · 923 Bytes
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
vim.defer_fn(function()
pcall(require, "impatient")
end, 0)
require("core")
require("core.options")
-- 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")
-- install binaries from mason.nvim & tsparsers
vim.api.nvim_create_autocmd("User", {
pattern = "PackerComplete",
callback = function()
vim.cmd("bw | silent! MasonInstallAll") -- close packer window
require("packer").loader("nvim-treesitter")
end,
})
end
pcall(require, "custom")
require("core.utils").load_mappings()