Compare commits

..
13 Commits
4 changed files with 12 additions and 10 deletions
+1 -2
View File
@@ -9,9 +9,8 @@ export ZSH="$HOME/.oh-my-zsh"
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="vulporuza"
# Palettes: ~/.dotfiles/vulporuza-palettes.zsh
VULPORUZA_PALETTE=vuru
VULPORUZA_PALETTE=current
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
+4
View File
@@ -5,6 +5,10 @@
enabled_plugins = TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler
suppress_multiple_term_dialog = True
[keybindings]
go_up = <Primary><Alt>Up
go_down = <Primary><Alt>Down
go_left = <Primary><Alt>Left
go_right = <Primary><Alt>Right
[profiles]
[[default]]
background_darkness = 0.7
+7 -7
View File
@@ -2,7 +2,7 @@
# Sourced by vulporuza.zsh-theme. Requires Oh My Zsh spectrum ($FG) and colors.
#
# Select one with VULPORUZA_PALETTE in ~/.zshrc (before Oh My Zsh):
# vuru | fox | frost | tokyo | quiet
# current | fox | frost | tokyo | quiet
typeset -ga _vulporuza_keys
_vulporuza_keys=(
@@ -11,8 +11,8 @@ _vulporuza_keys=(
upstream state error
)
typeset -gA _vulporuza_p_vuru
_vulporuza_p_vuru=(
typeset -gA _vulporuza_p_current
_vulporuza_p_current=(
dash "$FG[240]"
path "$FG[208]"
branch "%{$fg_bold[magenta]%}"
@@ -108,11 +108,11 @@ _vulporuza_p_quiet=(
_vulporuza_apply_palette() {
emulate -L zsh
local name=${VULPORUZA_PALETTE:-vuru}
local name=${VULPORUZA_PALETTE:-current}
if ! (( ${+parameters[_vulporuza_p_$name]} )); then
print -u2 "vulporuza: unknown VULPORUZA_PALETTE '${name}', using vuru"
name=vuru
VULPORUZA_PALETTE=vuru
print -u2 "vulporuza: unknown VULPORUZA_PALETTE '${name}', using current"
name=current
VULPORUZA_PALETTE=current
fi
typeset -gA _vulporuza
_vulporuza=()
-1
View File
@@ -19,7 +19,6 @@ if (( $+functions[git_super_status] )); then
else
_vulporuza_git='$(git_prompt_info)'
fi
if (( $+functions[virtualenv_prompt_info] )); then
_vulporuza_venv='$(virtualenv_prompt_info)'
else