summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zshrc')
-rwxr-xr-xzsh/.zshrc35
1 files changed, 35 insertions, 0 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
new file mode 100755
index 0000000..f242497
--- /dev/null
+++ b/zsh/.zshrc
@@ -0,0 +1,35 @@
+#!/bin/zsh
+
+export ZSH="$HOME/.oh-my-zsh"
+
+ZSH_THEME="gentoo"
+
+plugins=(
+ autojump
+ colored-man-pages
+ fzf
+ git
+ gpg-agent
+ mosh
+ pass
+ ripgrep
+)
+
+source $ZSH/oh-my-zsh.sh
+
+export FZF_TMUX=1
+export FZF_TMUX_OPTS='-p90%,80%'
+export EDITOR=nvim
+export HISTSIZE=5000
+export HISTFILE="$HOME/.history"
+export SAVEHIST=$HISTSIZE
+setopt hist_ignore_all_dups
+setopt hist_ignore_space
+setopt share_history
+
+export PATH=:$PATH:~/bin
+
+alias pkgdiff="pkgdiff-mg"
+alias grpe="grep"
+alias gti="git"
+alias sl="ls"