Last active
October 14, 2020 13:20
-
-
Save alper/e6f13a3a25f67295f753a94e8f0abcaa to your computer and use it in GitHub Desktop.
Revisions
-
alper revised this gist
Oct 14, 2020 . 1 changed file with 2 additions and 17 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ set -x LC_ALL en_US.UTF-8 set -x LANG en_US.UTF-8 # https://github.com/oh-my-fish/theme-bobthefish set -g theme_date_format "+%d %H:%M" set -g theme_date_timezone Europe/Berlin @@ -13,20 +14,4 @@ set -g theme_date_timezone Europe/Berlin # fzf provided by: https://github.com/jethrokuan/fzf set -U FZF_DEFAULT_OPTS "--bind 'ctrl-l:execute-silent(qlmanage -p {}),ctrl-r:execute-silent(open -R {}),ctrl-o:execute-silent(open {})+abort,ctrl-y:execute-silent(echo {} | pbcopy)+abort'" # Exa provided by: https://github.com/wawa19933/fish-exa -
alper revised this gist
Oct 14, 2020 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,12 +5,14 @@ set -x LANG en_US.UTF-8 set -g theme_date_format "+%d %H:%M" set -g theme_date_timezone Europe/Berlin # Pyenv provided by: https://github.com/oh-my-fish/plugin-pyenv # status --is-interactive; and source (pyenv init -|psub) # fzf provided by: https://github.com/jethrokuan/fzf set -U FZF_DEFAULT_OPTS "--bind 'ctrl-l:execute-silent(qlmanage -p {}),ctrl-r:execute-silent(open -R {}),ctrl-o:execute-silent(open {})+abort,ctrl-y:execute-silent(echo {} | pbcopy)+abort'" # Exa aliases function l -d 'list files with exa' -w exa -
alper created this gist
Oct 13, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ set -x LC_ALL en_US.UTF-8 set -x LANG en_US.UTF-8 # https://github.com/oh-my-fish/theme-bobthefish set -g theme_date_format "+%d %H:%M" set -g theme_date_timezone Europe/Berlin # status --is-interactive; and source (pyenv init -|psub) # FZF plugin set -U FZF_DEFAULT_OPTS "--bind 'ctrl-p:execute-silent(open {}),ctrl-y:execute-silent(echo {} | pbcopy)+abort'" # Exa aliases function l -d 'list files with exa' -w exa command exa -l --group-directories-first --git $argv end function la -d 'list files (with hidden) using exa' -w exa command exa -l --group-directories-first --git -a $argv end function ll -d 'long list files in directory recursively as tree with exa' -w exa command exa -lT --group-directories-first --git --level 4 --color always $argv | bat -p end function lr -d 'list files (most recent in bottom) with exa' -w exa command exa -l --group-directories-first --git --sort newest $argv end