fixed the broken flake thing
This commit is contained in:
@@ -53,6 +53,10 @@
|
|||||||
# Define the default package for this system
|
# Define the default package for this system
|
||||||
default = inputs.wrappers.wrappers.neovim.wrap {
|
default = inputs.wrappers.wrappers.neovim.wrap {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
env = {
|
||||||
|
"CONFIG_ROOT" = ./.;
|
||||||
|
"NVIM_APPNAME" = "nvim-voidarc-remote";
|
||||||
|
};
|
||||||
runtimePkgs = pkgList;
|
runtimePkgs = pkgList;
|
||||||
settings.config_directory = ./.;
|
settings.config_directory = ./.;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
local plugins = {}
|
local plugins = {}
|
||||||
|
|
||||||
-- 1. Setup paths
|
-- 1. Setup paths
|
||||||
local lua_path = vim.fn.stdpath("config") .. "/lua"
|
local lua_path = os.getenv("CONFIG_ROOT") .. "/lua"
|
||||||
local plugin_dir = lua_path .. "/plugins"
|
local plugin_dir = lua_path .. "/plugins"
|
||||||
|
|
||||||
-- 2. Use ** to search recursively for all .lua files
|
-- 2. Use ** to search recursively for all .lua files
|
||||||
|
|||||||
Reference in New Issue
Block a user