summaryrefslogtreecommitdiff
path: root/.zshrc
blob: 180fecd44ecb8229e9257c02f7a4e6973ae0b963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export ZSH="$HOME/.config/zsh/ohmyzsh"

CASE_SENSITIVE="true"

HYPHEN_INSENSITIVE="true"

HIST_STAMPS="dd.mm.yyyy"

plugins=(git)

source $ZSH/oh-my-zsh.sh
source /etc/profile.d/autojump.zsh

export EDITOR=nvim
export AUR_PAGER=$EDITOR

alias vim=$EDITOR
alias ls="exa"
alias tree="exa --tree"

export NNN_PLUG='n:nuke;p:addtoplaylist'
export GRIM_DEFAULT_DIR=~/Images/Screenshots

export PATH=$PATH:~/bin

eval "$(starship init zsh)"