This repository has been archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
.zshrc
62 lines (48 loc) · 1.52 KB
/
.zshrc
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
if [[ $(tty) != /dev/tty* ]]; then
source ~/.config/zsh/theme.conf
fi
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
plugins=(
archlinux docker git rsync sudo systemd
)
source $ZSH/oh-my-zsh.sh
source /usr/share/fzf/completion.zsh
source /usr/share/fzf/key-bindings.zsh
export LANG=en_US.UTF-8
export VISUAL="nano"
export TERM=xterm-256color
export ELECTRON_TRASH=gio
export GTK2_RC_FILES=~/.config/gtk-2.0/gtkrc
export GTK_THEME=Materia-dark-compact
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=5000
setopt appendhistory autocd extendedglob notify complete_aliases
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '~/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
source ~/.config/zsh/aliases.conf
export XKB_DEFAULT_LAYOUT=de
if [ $(tty) = "/dev/tty1" ]; then
# export GDK_BACKEND=wayland
export CLUTTER_BACKEND=wayland
# export QT_QPA_PLATFORM=wayland-egl
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export QT_WAYLAND_FORCE_DPI=phyiscal
export ECORE_EVAS_EVAS_ENGINE=wayland_egl
export ELM_ENGINE=wayland_egl
export SDL_VIDEODRIVER=wayland
export _JAVA_AWT_WM_NONREPARENTING=1
sway
exit 0
fi