diff options
author | Tom Barrett <spalf0@gmail.com> | 2019-09-03 07:54:01 -0500 |
---|---|---|
committer | Tom Barrett <spalf0@gmail.com> | 2019-09-03 07:54:01 -0500 |
commit | b0a3f691541903ebf8109eba968c0d4b4ba54b21 (patch) | |
tree | 20c11e7c023edcb07a95b9c2c9eb0930014c710f /.config/fish | |
parent | 77a4636b09d49a1c8bf1cadd57cbe4a634d61fa3 (diff) |
more paths, firefox desktop and download dirs, aerc makefile change, new src directory
Diffstat (limited to '.config/fish')
-rw-r--r-- | .config/fish/config.fish | 1 | ||||
-rw-r--r-- | .config/fish/fish_variables | 3 | ||||
-rw-r--r-- | .config/fish/functions/fish_prompt.fish | 42 |
3 files changed, 45 insertions, 1 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index f6ebca8..d13dd2a 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -1,4 +1,3 @@ -#fish_vi_key_bindings function fish_user_key_bindings for mode in insert default visual bind -M $mode \cf forward-char diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index 6442ac4..12cdc2d 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables @@ -3,6 +3,9 @@ SETUVAR __fish_init_2_39_8:\x1d SETUVAR __fish_init_2_3_0:\x1d SETUVAR __fish_init_3_x:\x1d +SETUVAR --export --path GOPATH:/home/tom/src/go +SETUVAR --export --path PATH:/usr/local/sbin\x1e/usr/sbin\x1e/sbin\x1e/usr/local/bin\x1e/usr/bin\x1e/bin\x1e/usr/local/games\x1e/usr/games +SETUVAR EDITOR:nvim SETUVAR _fish_abbr_vim:nvim SETUVAR fish_color_autosuggestion:64DF85 SETUVAR fish_color_cancel:\x2dr diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish new file mode 100644 index 0000000..7f4860d --- /dev/null +++ b/.config/fish/functions/fish_prompt.fish @@ -0,0 +1,42 @@ +function fish_prompt --description 'Write out the prompt' + + set stat $status + + if not set -q __fish_prompt_normal + set -g __fish_prompt_normal (set_color normal) + end + + if not set -q __fish_color_blue + set -g __fish_color_blue (set_color -o blue) + end + + #Set the color for the status depending on the value + set __fish_color_status (set_color -o green) + if test $stat -gt 0 + set __fish_color_status (set_color -o red) + end + + switch "$USER" + + case root toor + + 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# ' $USER (prompt_hostname) "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" + + 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 %s(%s)%s \f\r> ' (date "+%H:%M:%S") "$__fish_color_blue" $USER (prompt_hostname) "$__fish_prompt_cwd" "$PWD" "$__fish_color_status" "$stat" "$__fish_prompt_normal" + + end +end |