so alternative GUIs can find lua dependencies that are not plugins (for instance nio). Some plugins depend on lua packages that are not vim plugins and thus become "invisible" to nixpkgs as it stands. For now they need to be specified manually via `extraLuaPackages` but hopefully we can autodiscover those in nixpkgs.
8 lines
500 B
Text
8 lines
500 B
Text
vim.cmd [[source /nix/store/00000000000000000000000000000000-nvim-init-home-manager.vim]]
|
|
package.path = "/nix/store/00000000000000000000000000000000-luajit2.1-luautf8/share/lua/5.1/?.lua;/nix/store/00000000000000000000000000000000-luajit2.1-luautf8/share/lua/5.1/?/init.lua".. ";" .. package.path
|
|
package.cpath = "/nix/store/00000000000000000000000000000000-luajit2.1-luautf8/lib/lua/5.1/?.so".. ";" .. package.cpath
|
|
-- user-associated plugin config {{{
|
|
function HM_PLUGIN_LUA_CONFIG ()
|
|
end
|
|
|
|
-- }}}
|