diff options
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 7 | ||||
-rw-r--r-- | zsh/package.toml | 6 |
2 files changed, 8 insertions, 5 deletions
@@ -10,8 +10,8 @@ unsetopt notify # History setopt append_history hist_ignore_dups hist_ignore_space HISTFILE=~/.cache/zsh/histfile -HISTSIZE=1000 -SAVEHIST=100000 +HISTSIZE=100000 +SAVEHIST=1000000 # Zle setopt beep @@ -41,6 +41,7 @@ compinit -d $HOME/.cache/zsh/zcompdump # Misc typeset -U path path+=(~/.local/bin) +path+=(~/.ghcup/bin ~/.cabal/bin) REPORTTIME=2 PROMPT=": " @@ -56,4 +57,4 @@ alias p='pacman' alias sc='systemctl' alias aria2c="aria2c --conf-path=$HOME/.config/aria2/config" alias chat="ssh karif -t 'TERM=\"xterm\" /usr/bin/bash -l -c \"tmux attach -t weechat\"'" -alias tmux='tmux -f ~/.config/tmux/tmux.conf' +alias tmux='tmux -f ~/.config/tmux/config' diff --git a/zsh/package.toml b/zsh/package.toml index 090d08e..4231fdc 100644 --- a/zsh/package.toml +++ b/zsh/package.toml @@ -1,6 +1,8 @@ +# zsh package + [[files]] -source = './.zshrc' -dest = '~/.zshrc' +source = './.zshrc' +collection = 'zshrc' [[files]] source = './.zprofile' |