Skip to content

Commit 6dfc750

Browse files
committed
add various configs
1 parent 3add4ce commit 6dfc750

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.bash_profile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
2+
exec startx
3+
fi
4+
5+
export GPG_TTY=$(tty)
6+

.zprofile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
2+
exec startx
3+
fi

.zshrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export ZSH="/home/ethem/.oh-my-zsh"
2+
ZSH_THEME="ethmtrgt"
3+
4+
source $ZSH/oh-my-zsh.sh
5+
source ~/git/zsh-autocomplete/zsh-autocomplete.plugin.zsh
6+
source ~/git/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
7+
plugins=(
8+
git
9+
)
10+
11+
alias py="python"
12+
alias vim="nvim"
13+
alias v="vim"
14+
15+
export EDITOR=vim
16+
export VISUAL=vim
17+
export PATH=$PATH:/home/ethem/.spicetify
18+

0 commit comments

Comments
 (0)