neovim-confs/init.lua

40 lines
1.0 KiB
Lua
Raw Normal View History

vim.defer_fn(function()
pcall(require, "impatient")
end, 0)
require "core"
require "core.options"
2022-05-31 21:19:23 +02:00
-- setup packer + plugins
2022-08-06 05:58:05 +02:00
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 }
os.execute("mkdir -p " .. vim.g.base46_cache)
2022-11-17 17:02:55 +01:00
2022-08-06 05:58:05 +02:00
-- install plugins + compile their configs
vim.cmd "packadd packer.nvim"
2022-11-17 18:46:28 +01:00
2022-08-06 05:58:05 +02:00
require "plugins"
vim.cmd "PackerSync"
-- install binaries from mason.nvim & tsparsers
vim.api.nvim_create_autocmd("User", {
pattern = "PackerComplete",
callback = function()
2022-11-17 18:46:28 +01:00
require("base46").load_all_highlights()
vim.cmd "bw | silent! MasonInstallAll" -- close packer window
require("packer").loader "nvim-treesitter"
end,
})
2022-08-06 05:58:05 +02:00
end
pcall(require, "custom")
require("core.utils").load_mappings()