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