Skip to content

Instantly share code, notes, and snippets.

@dan-c-underwood
Created August 27, 2015 17:44
Show Gist options
  • Save dan-c-underwood/3848e2b1222e31f28355 to your computer and use it in GitHub Desktop.
Save dan-c-underwood/3848e2b1222e31f28355 to your computer and use it in GitHub Desktop.
fish shell customisations
# Set paths
set -x GOPATH $HOME/Projects/go
set --universal fish_user_paths $fish_user_paths $GOPATH/bin
# Colored man pages
set -x LESS_TERMCAP_mb (printf "\e[02;31m")
set -x LESS_TERMCAP_md (printf "\e[01;31m")
set -x LESS_TERMCAP_me (printf "\e[0m")
set -x LESS_TERMCAP_se (printf "\e[0m")
set -x LESS_TERMCAP_so (printf "\e[01;44;33m")
set -x LESS_TERMCAP_ue (printf "\e[0m")
set -x LESS_TERMCAP_us (printf "\e[01;32m")
# Prompt settings
set -g theme_display_user yes
# Colour theme
set -g fish_color_command 60ac39
set -g fish_color_comment 7d7a68
set -g fish_color_autosuggestion a6a28c
set -g fish_color_error d73737
set -g fish_color_param b854d4
set -g fish_color_quote ae9513
set -g fish_color_end ae9513
set -g fish_color_redirection 6684e1
# OPAM configuration
eval (opam config env)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment