my-nvim-lua/init.lua
siduck 0bde81a074 Improve startuptime | remove un-needed plugins | lazy load plugin highlights too
removed nvim-gps as nvim-navic or winbar.nvim will be added when v0.8 neovim releases. Removed lsp signature as I was able to emulate showing args with the default signature help() window
2022-06-14 17:36:27 +05:30

18 lines
303 B
Lua

require "core"
require "core.utils"
require "core.options"
vim.defer_fn(function()
require("core.utils").load_mappings()
end, 0)
-- setup packer + plugins
require("core.packer").bootstrap()
require "plugins"
local user_conf, _ = pcall(require, "custom")
if user_conf then
require "custom"
end