Skip to content

Instantly share code, notes, and snippets.

@kuchida1981
Created May 8, 2023 14:51
Show Gist options
  • Save kuchida1981/002f2c034c7db2a36c2ed2330f4bac3e to your computer and use it in GitHub Desktop.
Save kuchida1981/002f2c034c7db2a36c2ed2330f4bac3e to your computer and use it in GitHub Desktop.
fish shell 設定
set -g theme_display_git yes
set -g theme_display_git_dirty yes
set -g theme_display_git_untracked yes
set -g theme_display_git_ahead_verbose no
set -g theme_display_git_dirty_verbose yes
set -g theme_display_git_stashed_verbose no
set -g theme_display_git_default_branch no
set -g theme_git_default_branches master main
set -g theme_git_worktree_support no
set -g theme_use_abbreviated_branch_name yes
set -g theme_display_vagrant yes
set -g theme_display_docker_machine yes
set -g theme_display_k8s_context yes
set -g theme_display_hg yes
set -g theme_display_virtualenv no
set -g theme_display_nix no
set -g theme_display_ruby no
set -g theme_display_node yes
set -g theme_display_user ssh
set -g theme_display_hostname ssh
set -g theme_display_vi no
set -g theme_display_date no
set -g theme_display_cmd_duration no
set -g theme_title_display_process yes
set -g theme_title_display_path yes
set -g theme_title_display_user no
set -g theme_title_use_abbreviated_path no
set -g theme_date_format "+%H:%M:%S"
set -g theme_date_timezone Asia/Tokyo
set -g theme_avoid_ambiguous_glyphs yes
set -g theme_powerline_fonts no
set -g theme_nerd_fonts yes
set -g theme_show_exit_status yes
set -g theme_display_jobs_verbose yes
set -g default_user $USER
set -g theme_color_scheme base16
set -g fish_prompt_pwd_dir_length 1
set -g theme_project_dir_length 1
set -g theme_newline_cursor yes
set -g theme_newline_prompt '$ '
#source /usr/share/powerline/bindings/fish/powerline-setup.fish
#powerline-setup
# 複数キーシーケンスのため
set -g fish_escape_delay_ms 500
# 環境変数
set -g LANG "en_US.UTF-8"
set -x EDITOR "nvim"
set -x BROWSER "vivaldi-stable"
set -x LESS $LESS "-X"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
eval /home/kosuke/.pyenv/versions/anaconda3-2021.11/bin/conda "shell.fish" "hook" $argv | source
# <<< conda initialize <<<
set fisher_path $XDG_CONFIG_HOME/fish/fisher_plugins
set fish_function_path $fish_function_path[1] $fisher_path/functions $fish_function_path[2..-1]
set fish_complete_path $fish_complete_path[1] $fisher_path/completions $fish_complete_path[2..-1]
for file in $fisher_path/conf.d/*.fish
source $file
end
set -x PATH $HOME/.nodebrew/current/bin $PATH
# pyenv init --path | source
pyenv init - | source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment