Compare commits
15
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e354721927 | ||
|
|
ebb8285300 | ||
|
|
f2e7bb3714 | ||
|
|
91d281c2ce | ||
|
|
b348ce9b35 | ||
|
|
b2b6d8b2ad | ||
|
|
8ed785e03c | ||
|
|
ebabf1c529 | ||
|
|
8b4e8c99ad | ||
|
|
302c10bd6c | ||
|
|
d1b621a4f8 | ||
|
|
981113b24c | ||
|
|
5411dcfa35 | ||
|
|
0be57787e0 | ||
|
|
f4af032bc3 |
@@ -9,8 +9,9 @@ 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=current
|
||||
VULPORUZA_PALETTE=vuru
|
||||
|
||||
# Set list of themes to pick from when loading at random
|
||||
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
||||
|
||||
@@ -5,10 +5,6 @@
|
||||
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
|
||||
|
||||
@@ -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):
|
||||
# current | fox | frost | tokyo | quiet
|
||||
# vuru | fox | frost | tokyo | quiet
|
||||
|
||||
typeset -ga _vulporuza_keys
|
||||
_vulporuza_keys=(
|
||||
@@ -11,8 +11,8 @@ _vulporuza_keys=(
|
||||
upstream state error
|
||||
)
|
||||
|
||||
typeset -gA _vulporuza_p_current
|
||||
_vulporuza_p_current=(
|
||||
typeset -gA _vulporuza_p_vuru
|
||||
_vulporuza_p_vuru=(
|
||||
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:-current}
|
||||
local name=${VULPORUZA_PALETTE:-vuru}
|
||||
if ! (( ${+parameters[_vulporuza_p_$name]} )); then
|
||||
print -u2 "vulporuza: unknown VULPORUZA_PALETTE '${name}', using current"
|
||||
name=current
|
||||
VULPORUZA_PALETTE=current
|
||||
print -u2 "vulporuza: unknown VULPORUZA_PALETTE '${name}', using vuru"
|
||||
name=vuru
|
||||
VULPORUZA_PALETTE=vuru
|
||||
fi
|
||||
typeset -gA _vulporuza
|
||||
_vulporuza=()
|
||||
|
||||
@@ -19,6 +19,7 @@ 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
|
||||
|
||||
Reference in New Issue
Block a user