From 86bb7a0d571d8094d7f225a5524926168c28623f Mon Sep 17 00:00:00 2001 From: Stephen Parkinson Date: Thu, 27 Feb 2025 21:23:53 -0800 Subject: [PATCH] Increase tmux scrollback --- tmux/tmux.conf | 2 ++ zsh/zshrc | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 7317e25..f8db74e 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -32,6 +32,8 @@ set-option -g visual-silence off set-window-option -g monitor-activity off set-option -g bell-action none +set-option -g history-limit 50000 + set -g default-terminal "screen-256color" setw -g clock-mode-colour colour135 diff --git a/zsh/zshrc b/zsh/zshrc index 2a68a95..0e09b05 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -26,6 +26,7 @@ bindkey '^[[Z' reverse-menu-complete # Configure history to be longer HISTSIZE=10000000 SAVEHIST=10000000 +export HISTFILE=~/.zsh_history setopt BANG_HIST # Treat the '!' character specially during expansion. setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format. setopt INC_APPEND_HISTORY # Write to the history file immediately, not when the shell exits. @@ -66,3 +67,9 @@ if [ "$(uname)" = "Darwin" ]; then source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh fi + +# Added by LM Studio CLI (lms) +export PATH="$PATH:/Users/smparkin/.cache/lm-studio/bin" + +# Created by `pipx` on 2025-02-08 01:15:05 +export PATH="$PATH:/Users/smparkin/.local/bin"