diff options
author | yushyin <yushyin@saga> | 2020-12-14 03:12:45 +0100 |
---|---|---|
committer | yushyin <yushyin@saga> | 2020-12-14 03:12:45 +0100 |
commit | 437ceadb6a8d67a61be8bcb97a476b954f184e87 (patch) | |
tree | 22963fa56824415792d0a7887a38e99132599682 /zsh | |
parent | 977df7eead79411180f01d9ef4474f835baf706e (diff) | |
download | dotfiles-igor-master.tar.gz dotfiles-igor-master.tar.xz |
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' |