Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ fn main() -> Result<(), Box<dyn Error>> {
});

// Terminal config setup
let term_config = term::Config::default();
let term_config = term::Config {
scrolling_history: 100_000,
..term::Config::default()
};
// Set up environmental variables for terminal
tty::setup_env();
// Override TERM for better compatibility
Expand Down
Loading