Initial commit

This commit is contained in:
Ryan Ward
2026-04-29 10:43:20 -05:00
parent b7b327510d
commit d8d4ac9e5d
28 changed files with 211 additions and 83 deletions
+2 -2
View File
@@ -93,9 +93,9 @@ pub fn run() -> Result<()> {
/// Returns a vector of validated plugin directory paths in the plugins directory.
///
/// This assumes that all plugins are located in ~/.warp/plugins.
/// This assumes that all plugins are located in ~/.warp-core/plugins.
fn plugin_paths() -> Vec<PathBuf> {
const PLUGIN_PATH_SUFFIX: &str = ".warp/plugins";
const PLUGIN_PATH_SUFFIX: &str = ".warp-core/plugins";
dirs::home_dir()
.map(|home_dir| home_dir.join(PLUGIN_PATH_SUFFIX))