Skip to content

Instantly share code, notes, and snippets.

@andrepgsilva
Last active October 29, 2020 18:31
Show Gist options
  • Save andrepgsilva/2ce2539fc77479c7972892152ef0b202 to your computer and use it in GitHub Desktop.
Save andrepgsilva/2ce2539fc77479c7972892152ef0b202 to your computer and use it in GitHub Desktop.
Fish Functions
function fish_prompt
if not set -q __fish_prompt_hostname
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
end
if not set -q __fish_prompt_normal
set -g __fish_prompt_normal (set_color normal)
end
if not set -q __git_cb
set __git_cb "("(set_color brown)(git branch ^/dev/null | grep \* | sed 's/* //')(set_color normal)")"
end
switch $USER
case root
if not set -q __fish_prompt_cwd
if set -q fish_color_cwd_root
set -g __fish_prompt_cwd (set_color $fish_color_cwd_root)
else
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
end
end
printf '%s@%s:%s%s%s%s# ' $USER $__fish_prompt_hostname "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb
case '*'
if not set -q __fish_prompt_cwd
set -g __fish_prompt_cwd (set_color $fish_color_cwd)
end
printf '%s@%s:%s%s%s%s$ ' $USER $__fish_prompt_hostname "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb
end
end
function l --description 'List contents of directory'
command ls -G --color $argv
end
function la --description 'List contents of directory'
command ls -a --color $argv
end
function ll --description 'List contents of directory'
command ls -l --color $argv
end
function man --description "Make man command colorful"
set -x LESS_TERMCAP_md (set_color --bold red)
set -x LESS_TERMCAP_me (set_color normal)
command man $argv
end
@andrepgsilva
Copy link
Author

andrepgsilva commented Oct 26, 2020

You need to put the fish files on directory ~/config/fish/functions/ 😛

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment