diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
commit | 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 (patch) | |
tree | 0408697aba64aa3f012f134bdc35316841a4b404 /dotfiles/.profile | |
parent | 8f672e8a119e9efd23272f7cb0ff4550872f9d47 (diff) | |
download | swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.tar.gz swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.zip |
config restructuring and cleanup
Diffstat (limited to 'dotfiles/.profile')
-rw-r--r-- | dotfiles/.profile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dotfiles/.profile b/dotfiles/.profile index 375479e..28465da 100644 --- a/dotfiles/.profile +++ b/dotfiles/.profile @@ -1,5 +1,4 @@ -#!/bin/sh - +export PATH=$PATH:$HOME/.local/bin export SCROT_DIR=$HOME/Pictures/screenshots/ export GDK_BACKEND=wayland export EGL_PLATFORM=wayland @@ -13,10 +12,12 @@ export _JAVA_AWT_WM_NONREPARENTING=1 # User specific environment and startup programs: export LANG=en_US.UTF-8 export TERM=xterm-256color +export TERMINAL=termite +export EDITOR="nvim" export BROWSER=qutebrowser - -[[ -f ~/.bashrc ]] && source ~/.bashrc +export ZDOTDIR="$HOME/.config/zsh" if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then .scripts/swaystart fi + |