Commit 86e0cfbc authored by Rob Day's avatar Rob Day

Modified theme names with metadata (Theme name) required by fish_config

parent 05b88b9f
# name: Agnoster
# agnoster's Theme - https://gist.github.com/3712874 # agnoster's Theme - https://gist.github.com/3712874
# A Powerline-inspired theme for FISH # A Powerline-inspired theme for FISH
# #
......
# name: CoffeeAndCode
# Theme colors # Theme colors
set fish_color_normal 5f5f5f set fish_color_normal 5f5f5f
set fish_color_command 5f87ff set fish_color_command 5f87ff
......
# name: Cor
# Display the following bits on the left: # Display the following bits on the left:
# * Virtualenv name (if applicable, see https://github.com/adambrenecki/virtualfish) # * Virtualenv name (if applicable, see https://github.com/adambrenecki/virtualfish)
# * Current user # * Current user
......
# name: idan
# Display the following bits on the left: # Display the following bits on the left:
# * Virtualenv name (if applicable, see https://github.com/adambrenecki/virtualfish) # * Virtualenv name (if applicable, see https://github.com/adambrenecki/virtualfish)
# * Current directory name # * Current directory name
......
# name: Jacaetevha
function tbytes -d 'calculates the total size of the files in the current directory' function tbytes -d 'calculates the total size of the files in the current directory'
set -l tBytes (ls -al | grep "^-" | awk 'BEGIN {i=0} { i += $5 } END { print i }') set -l tBytes (ls -al | grep "^-" | awk 'BEGIN {i=0} { i += $5 } END { print i }')
......
# name: Krisleech
function _git_branch_name function _git_branch_name
echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||') echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
end end
......
# name: L
function _git_branch_name function _git_branch_name
echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||') echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
end end
......
# name: Numist
function fish_prompt function fish_prompt
set -l last_status $status set -l last_status $status
......
# name: RobbyRussel
function _git_branch_name function _git_branch_name
echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||') echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
end end
......
# name: Uggedal
function fish_prompt function fish_prompt
if test -n "$SSH_CONNECTION" if test -n "$SSH_CONNECTION"
printf '%s ' $HOSTNAME printf '%s ' $HOSTNAME
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment