Compare commits
13
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
511f87ea1c | ||
|
|
40f0a4c947 | ||
|
|
34e70b669e | ||
|
|
4ed3b37877 | ||
|
|
66015c7762 | ||
|
|
1d947a4c9a | ||
|
|
1beccf1252 | ||
|
|
1333250def | ||
|
|
fff6f346cb | ||
|
|
553b019911 | ||
|
|
89d164c957 | ||
|
|
521541490d | ||
|
|
bfcf494bba |
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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=()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user