refactor: remove useless comment

This commit is contained in:
YummyOreo 2024-04-28 21:42:35 -05:00
parent e4bd0e4894
commit 5891e387b9
No known key found for this signature in database
GPG Key ID: E8E87F141BD9D750

View File

@ -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"#)
}