-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshenv
34 lines (28 loc) · 808 Bytes
/
.zshenv
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
# Variables
export EDITOR=/usr/bin/nvim
export VISUAL=/usr/bin/nvim
export PAGER=/usr/bin/less
export TERMINAL=/usr/bin/alacritty
# Qt
export QT_QPA_PLATFORMTHEME=qt5ct
export QT_STYLE_OVERRIDE=kvantum
# User dirs
if [ -f "$HOME/.config/user-dirs.dirs" ]; then
source "$HOME/.config/user-dirs.dirs"
export $(cut -d = -f 1 "$HOME/.config/user-dirs.dirs")
fi
# Path
if [ -d "$HOME/.local/bin" ]; then
export PATH="$HOME/.local/bin:$PATH"
fi
# Scripts
if [ -d "$XDG_SCRIPTS_DIR" ]; then
export PATH="$XDG_SCRIPTS_DIR:$PATH"
fi
# Fzf theme
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
--color=fg:#e5e9f0,bg:#3b4252,hl:#81a1c1
--color=fg+:#e5e9f0,bg+:#3b4252,hl+:#81a1c1
--color=info:#eacb8a,prompt:#bf6069,pointer:#b48dac
--color=marker:#a3be8b,spinner:#b48dac,header:#a3be8b'