all repos

init.lua @ ddb2e1304ff5b0c17e4b6ecc4aab5f8a3c0cce49

my nvim config

init.lua/lua/fk/globals.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- selene: allow(global_usage)
function _G.P(v)
  print(vim.inspect(v))
  return v
end

function _G.RELOAD(...)
  return require("plenary.reload").reload_module(...)
end

function _G.R(name)
  _G.RELOAD(name)
  return require(name)
end