-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zprofile
34 lines (25 loc) · 895 Bytes
/
.zprofile
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
27
28
29
30
31
32
33
34
#!/bin/zsh
export EDITOR="nvim"
export TERMINAL="st"
export BROWSER="firefox"
# export ~/.local/bin to PATH
export PATH=$HOME/.local/bin:/usr/local/bin:$PATH
# ~/ clean-up
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
# show hidden files with fzf
export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_COMPLETION_TRIGGER='**'
export FZF_COMPLETION_OPTS='--border --info=inline'
# Path to your oh-my-zsh installation.
export ZSH="/home/jeff/.oh-my-zsh"
# GTK dark theme
export GTK_THEME=Adwaita:dark
# atom read path
export ATOM_HOME=$HOME/.config/atom
# python
export PYTHONSTARTUP="${XDG_CONFIG_HOME:-$HOME/.config}/pythonstartup.py"
# start X11 on startup
[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Xorg >/dev/null 2>&1 && exec startx