all repos

init.lua @ a2de0a4

my nvim config

init.lua/lua/plugin/lua-dev.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
local M = {}

function M.setup()
  require("lua-dev").setup {
    library = {
      vimruntime = true,
      types = true,
      plugins = true,
    },
    runtime_path = false,
  }
end

return M