Skip to content
Snippets Groups Projects
Commit 0c675fe1 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

We don't need export

parent 8d8bcb51
No related branches found
No related tags found
No related merge requests found
# Override first bin dir
export PATH=~/bin:$PATH
PATH=~/bin:$PATH
# Use a bunch of colors
if [ "$TERM" = "screen" ]
then
export TERM="screen-256color-s"
TERM="screen-256color-s"
else
export TERM="xterm-256color"
TERM="xterm-256color"
fi
......
......@@ -4,7 +4,7 @@ then
if [ -x /usr/bin/ksshaskpass ]
then
# Use KDE askpass
export SSH_ASKPASS=/usr/bin/ksshaskpass
SSH_ASKPASS=/usr/bin/ksshaskpass
echo "zsh: Using ksshaskpass"
else
echo "NOTICE: You're using the plasma desktop, but you don't have ksshaskpass installed?"
......
......@@ -2,6 +2,6 @@
ZSH_THEME="powerlevel9k"
# Setup powerlevel9k
export POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir dir_writable vcs)
export POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator command_execution_time background_jobs history time)
export POWERLEVEL9K_MODE=nerdfont-complete
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir dir_writable vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status root_indicator command_execution_time background_jobs history time)
POWERLEVEL9K_MODE=nerdfont-complete
# Useful variables for our ZSH environment
test "x$HOSTNAME" = "x" && HOSTNAME=$(hostname)
export HOSTNAME
HOSTNAME
export VISUAL=vim
VISUAL=vim
export SHELL=/bin/zsh
SHELL=/bin/zsh
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.zsh/oh-my-zsh
ZSH=$HOME/.zsh/oh-my-zsh
# Custom directory
export ZSH_CUSTOM=$HOME/.zsh/custom
ZSH_CUSTOM=$HOME/.zsh/custom
# Set cache directory
export ZSH_CACHE=$HOME/.zsh/cache
ZSH_CACHE=$HOME/.zsh/cache
# User configuration
source $ZSH/oh-my-zsh.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment