0bde81a074
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
18 lines
303 B
Lua
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
|