summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/theprimeagen/init.lua
blob: 5db4e2870fba9c3abd202055e41b3d0974aabb02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require("theprimeagen.telescope")
require("theprimeagen.git-worktree")
require("theprimeagen.debugger")
require("theprimeagen.harpoon")
require("theprimeagen.lsp")

P = function(v)
	print(vim.inspect(v))
	return v
end

if pcall(require, "plenary") then
	RELOAD = require("plenary.reload").reload_module

	R = function(name)
		RELOAD(name)
		return require(name)
	end
end