summaryrefslogtreecommitdiffstats
path: root/src/shell/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell/mod.rs')
-rw-r--r--src/shell/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/shell/mod.rs b/src/shell/mod.rs
index 0547bae..8343b0e 100644
--- a/src/shell/mod.rs
+++ b/src/shell/mod.rs
@@ -212,10 +212,13 @@ pub struct Shell {
impl Shell {
pub fn new(offset: time::UtcOffset) -> anyhow::Result<Self> {
+ let mut env = Env::new()?;
+ env.set_var("SHELL", std::env::current_exe()?);
+ env.set_var("TERM", "screen");
Ok(Self {
readline: readline::Readline::new(),
history: history::History::new(),
- env: Env::new()?,
+ env,
git: None,
focus: Focus::Readline,
scene: Scene::Readline,