feat: add support for elvish shell (#1725)

* feat: add support for elvish shell

* improve doc

* elvish 0.15 is out

* fix example init

* update systax for 0.15 stable

* udpate second init example too

* remove warning from swift module

* add warning to status module docs

* prefix elvish version with v
This commit is contained in:
David Knaack
2021-02-02 12:59:55 +01:00
committed by GitHub
parent 10d5a7034b
commit 22dc8b842e
8 changed files with 80 additions and 1 deletions
+1
View File
@@ -203,6 +203,7 @@ fn get_config_path(shell: &str) -> Option<PathBuf> {
}
}
"zsh" => Some(".zshrc"),
"elvish" => Some(".elvish/rc.elv"),
_ => None,
}
.map(|path| home_dir.join(path))