diff --git a/crates/atuin-dotfiles/src/shell/nu.rs b/crates/atuin-dotfiles/src/shell/nu.rs index d190552c..de79da8a 100644 --- a/crates/atuin-dotfiles/src/shell/nu.rs +++ b/crates/atuin-dotfiles/src/shell/nu.rs @@ -2,6 +2,5 @@ pub async fn var_config() -> String { // Because nushell won't autoupdate, we just parse the output of `atuin dotfiles var list` in // nushell and load the env vars that way - // we should only do this if the dotfiles are enabled String::from(r#"atuin dotfiles var list | lines | parse "export {name}={value}" | reduce -f {} {|it, acc| $acc | upsert $it.name $it.value} | load-env"#) }