summaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc7
-rw-r--r--zsh/package.toml6
2 files changed, 8 insertions, 5 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index be1bfb0..9046706 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -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'