1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009 |
- # My fish config.
- # For ranger, htop and other console progs in Qtile
- set -e COLUMNS # -e = --erase
- set -e LINES
- set fish_prompt_pwd_dir_length 0 # disable shortening (~/O/Linux) entirely
- ### EXPORTs ###
- set HOME (echo /home/$USER)
- # set -U fish_user_paths $HOME/.local/bin $HOME/Programs/AppImageApplications $fish_user_paths
- # set PATH $PATH $HOME/.cargo/bin $HOME/.config/vifm/scripts $HOME/Programs/Android_SDK/platform-tools # PATH for exa in cargo and ...
- # set fish_greeting # Supresses fish's intro message
- # set fish_greeting 'Welcome to fish!'
- set EDITOR "vim"
- set VISUAL "gvim"
- set TERM "xterm-256color"
- set TERMINAL "alacritty"
- set BROWSER "firefox"
- set RANGER_LOAD_DEFAULT_RC FALSE # to avoid loading ranger's config twice
- set ANDROID_SDK $HOME"/Programs/Android_SDK"
- # EDITOR="vim" crontab -e # $EDITOR use Vim to edit crontab
- # select-editor (~/.selected-editor)
- set -x MANPAGER "sh -c 'col -bx | bat -l man -p'" # $MANPAGER use batcat to read mans
- set __GIT_PROMPT_DIR ~/.bash-git-prompt # Git autocomplition and prompt
- # source ~/.asdf/asdf.fish # For asdf manager
- ### SET EITHER DEFAULT EMACS MODE OR VI MODE ###
- function fish_user_key_bindings
- fish_default_key_bindings
- # fish_vi_key_bindings
- end
- ### END OF VI MODE ###
- ### AUTOCOMPLETE AND HIGHLIGHT COLORS ###
- # cyan from manjaro theme: #00CCBB #145C56 #16A085
- # set fish_color_normal '#16A085'
- # set fish_color_command '#16A085'
- # set fish_color_param '#16A085'
- set fish_color_normal brcyan
- set fish_color_autosuggestion '#7d7d7d'
- set fish_color_command brcyan
- set fish_color_error '#ff6c6b'
- set fish_color_param brcyan
- ### FUNCTIONS ###
- function fish_greeting -d "Greeting message on shell session start up"
- # Run neofetch
- neofetch
- end
- # Functions needed for !! and !$
- function __history_previous_command
- switch (commandline -t)
- case "!"
- commandline -t $history[1]; commandline -f repaint
- case "*"
- commandline -i !
- end
- end
- function __history_previous_command_arguments
- switch (commandline -t)
- case "!"
- commandline -t ""
- commandline -f history-token-search-backward
- case "*"
- commandline -i '$'
- end
- end
- # The bindings for !! and !$
- if [ $fish_key_bindings = fish_vi_key_bindings ];
- bind -Minsert ! __history_previous_command
- bind -Minsert '$' __history_previous_command_arguments
- else
- bind ! __history_previous_command
- bind '$' __history_previous_command_arguments
- end
- # Function for creating a backup file
- # ex: backup file.txt
- # result: copies file as file.txt.bak
- function backup --argument filename
- cp $filename $filename.bak
- end
- function fish_prompt
- # - green lines if the last return command is OK, red otherwise
- # - your user name, in red if root or yellow otherwise
- # - your hostname, in cyan if ssh or blue otherwise
- # - the current path (with prompt_pwd)
- # - date +%X
- # - the current virtual environment, if any
- # - the current git status, if any, with __fish_git_prompt
- # - the current battery state, if any, and if your power cable is unplugged, and if you have "acpi"
- # - current background jobs, if any
- # It goes from:
- # ┬─[nim@Hattori:~]─[11:39:00]
- # ╰─>$ echo here
- # To:
- # ┬─[nim@Hattori:~/w/dashboard]─[11:37:14]─[V:django20]─[G:master↑1|●1✚1…1]─[B:85%, 05:41:42 remaining]
- # │ 2 15054 0% arrêtée sleep 100000
- # │ 1 15048 0% arrêtée sleep 100000
- # ╰─>$ echo there
- # Colors
- # Reset
- set ResetColor (set_color normal) # Text Reset
- # Regular Colors
- set Blue (set_color blue) # Blue
- set Green (set_color green) # Green
- set Yellow (set_color yellow) # Yellow
- set Cyan (set_color cyan)
- set Red (set_color red) # Red
- set White (set_color white)
- # Bold
- set BBlue (set_color -o blue)
- set BGreen (set_color -o green) # Green
- set BYellow (set_color -o yellow) # Yellow
- set BCyan (set_color -o brcyan)
- set BRed (set_color -o red)
- set BWhite (set_color -o white)
- set BMagenta (set_color -o magenta) # Purple
- set BBlack (set_color -o black) # Black
- # # Default values for the appearance of the prompt. Configure at will.
- set GIT_PROMPT_PREFIX "("
- set GIT_PROMPT_SUFFIX ")"
- set GIT_PROMPT_SEPARATOR "|"
- set GIT_PROMPT_BRANCH "$BMagenta"
- set GIT_PROMPT_STAGED "$Red● "
- set GIT_PROMPT_CONFLICTS "$Red✖ "
- set GIT_PROMPT_CHANGED "$Blue✚ "
- set GIT_PROMPT_REMOTE " "
- set GIT_PROMPT_UNTRACKED "…"
- set GIT_PROMPT_STASHED "⚑ "
- set GIT_PROMPT_CLEAN "$BGreen✔"
- set -q __fish_git_prompt_showupstream
- or set -g __fish_git_prompt_showupstream auto
- function _nim_prompt_wrapper
- set retc $argv[1]
- set field_name $argv[2]
- set field_value $argv[3]
- set_color normal
- set_color $retc
- echo -n '─'
- set_color -o green
- echo -n '['
- set_color normal
- test -n $field_name
- and echo -n $field_name:
- set_color $retc
- echo -n $field_value
- set_color -o green
- echo -n ']'
- end
- and set retc green
- or set retc red
- set_color $retc
- echo
- echo -n '┬─'
- set_color -o green
- echo -n [
- if test "$USER" = root -o "$USER" = toor
- set_color -o red
- else
- set_color -o yellow
- end
- echo -n $USER
- set_color -o white
- echo -n @
- if [ -z "$SSH_CLIENT" ]
- set_color -o blue
- else
- set_color -o cyan
- end
- echo -n (prompt_hostname):
- set_color -o white
- echo -n (prompt_pwd)
- set_color -o green
- echo -n ']'
- # Date
- # _nim_prompt_wrapper $retc '' (date "+%I:%M %p")
- _nim_prompt_wrapper $retc '' (date "+%H:%M")
- # Virtual Environment
- # set -q VIRTUAL_ENV
- # and _nim_prompt_wrapper $retc V (basename "$VIRTUAL_ENV")
- # git
- set -e __CURRENT_GIT_STATUS
- set gitstatus "$__GIT_PROMPT_DIR/gitstatus.py"
- # set _GIT_STATUS (python $gitstatus)
- set _GIT_STATUS (python3 $gitstatus)
- set __CURRENT_GIT_STATUS $_GIT_STATUS
- set __CURRENT_GIT_STATUS_PARAM_COUNT (count $__CURRENT_GIT_STATUS)
- if not test "0" -eq $__CURRENT_GIT_STATUS_PARAM_COUNT
- set GIT_BRANCH $__CURRENT_GIT_STATUS[1]
- set GIT_REMOTE "$__CURRENT_GIT_STATUS[2]"
- if contains "." "$GIT_REMOTE"
- set -e GIT_REMOTE
- end
- set GIT_STAGED $__CURRENT_GIT_STATUS[3]
- set GIT_CONFLICTS $__CURRENT_GIT_STATUS[4]
- set GIT_CHANGED $__CURRENT_GIT_STATUS[5]
- set GIT_UNTRACKED $__CURRENT_GIT_STATUS[6]
- set GIT_STASHED $__CURRENT_GIT_STATUS[7]
- set GIT_CLEAN $__CURRENT_GIT_STATUS[8]
- end
- if test -n "$__CURRENT_GIT_STATUS"
- set STATUS "$GIT_PROMPT_BRANCH$GIT_BRANCH$ResetColor"
- if set -q GIT_REMOTE
- set STATUS "$STATUS$GIT_PROMPT_REMOTE$GIT_REMOTE$ResetColor"
- end
- set STATUS "$STATUS$GIT_PROMPT_SEPARATOR"
- if [ $GIT_STAGED != "0" ]
- set STATUS "$STATUS$GIT_PROMPT_STAGED$GIT_STAGED$ResetColor"
- end
- if [ $GIT_CONFLICTS != "0" ]
- set STATUS "$STATUS$GIT_PROMPT_CONFLICTS$GIT_CONFLICTS$ResetColor"
- end
- if [ $GIT_CHANGED != "0" ]
- set STATUS "$STATUS$GIT_PROMPT_CHANGED$GIT_CHANGED$ResetColor"
- end
- if [ "$GIT_UNTRACKED" != "0" ]
- set STATUS "$STATUS$GIT_PROMPT_UNTRACKED$GIT_UNTRACKED$ResetColor"
- end
- if [ "$GIT_STASHED" != "0" ]
- set STATUS "$STATUS$GIT_PROMPT_STASHED$GIT_STASHED$ResetColor"
- end
- if [ "$GIT_CLEAN" = "1" ]
- set STATUS "$STATUS$GIT_PROMPT_CLEAN"
- end
- set STATUS "$STATUS$ResetColor"
- set prompt_git "$STATUS"
- else
- set prompt_git ""
- end
- # set prompt_git (__fish_git_prompt | string trim -c ' ()')
- test -n "$prompt_git"
- and _nim_prompt_wrapper $retc G $prompt_git
- # Battery status
- type -q acpi
- and test (acpi -a 2> /dev/null | string match -r off)
- and _nim_prompt_wrapper $retc B (acpi -b | cut -d' ' -f 4-)
- # New line
- echo
- # Background jobs
- set_color normal
- for job in (jobs)
- set_color $retc
- echo -n '│ '
- set_color brown
- echo $job
- end
- set_color normal
- set_color $retc
- echo -n '╰─>'
- if test "$USER" = root -o "$USER" = toor
- set_color -o red
- echo -n '# '
- else
- set_color -o yellow
- echo -n '$ '
- end
- set_color normal
- end
- # name: bash-git-prompt
- # author: Mariusz Smykuła <mariuszs@gmail.com>
- # function fish_prompt
- # if not set -q __GIT_PROMPT_DIR
- # set __GIT_PROMPT_DIR ~/.bash-git-prompt
- # end
- #
- # # Colors
- # # Reset
- # set ResetColor (set_color normal) # Text Reset
- #
- # # Regular Colors
- # set Blue (set_color blue) # Blue
- # set Green (set_color green) # Green
- # set Yellow (set_color yellow) # Yellow
- # set Cyan (set_color cyan)
- # set Red (set_color red) # Red
- # set White (set_color white)
- #
- # # Bold
- # set BBlue (set_color -o blue)
- # set BGreen (set_color -o green) # Green
- # set BYellow (set_color -o yellow) # Yellow
- # set BCyan (set_color -o brcyan)
- # set BRed (set_color -o red)
- # set BWhite (set_color -o white)
- # set BMagenta (set_color -o magenta) # Purple
- # set BBlack (set_color -o black) # Black
- #
- # # Default values for the appearance of the prompt. Configure at will.
- # set GIT_PROMPT_PREFIX "("
- # set GIT_PROMPT_SUFFIX ")"
- # set GIT_PROMPT_SEPARATOR "|"
- # set GIT_PROMPT_BRANCH "$BMagenta"
- # set GIT_PROMPT_STAGED "$Red● "
- # set GIT_PROMPT_CONFLICTS "$Red✖ "
- # set GIT_PROMPT_CHANGED "$Blue✚ "
- # set GIT_PROMPT_REMOTE " "
- # set GIT_PROMPT_UNTRACKED "…"
- # set GIT_PROMPT_STASHED "⚑ "
- # set GIT_PROMPT_CLEAN "$BGreen✔"
- #
- # # Various variables you might want for your PS1 prompt instead
- # # set Time (date +%R)
- # set Time (date "+%I:%M %p")
- # set PathShort (pwd|sed "s=$HOME=~=")
- # # set Name (whoami)
- # set HostName (hostname)
- # # set -g __fish_prompt_char \u276f\u276f
- # # set -g __fish_prompt_char »»»
- # # set -g __fish_prompt_char \u276d
- # set -g __fish_prompt_char ↪
- #
- # # set PROMPT_START "$Yellow$PathShort$ResetColor"
- # # set PROMPT_END " \n$White$Time$ResetColor \$ "
- # set PROMPT_START "\n$BYellow$USER$BWhite@$BGreen$HostName:$Blue$PathShort$ResetColor"
- # # set PROMPT_END "\n$BWhite$Time$BYellow > "
- # # set PROMPT_END "\n$BWhite$Time$BYellow $__fish_prompt_char "
- # # set PROMPT_END "\n$BYellow $__fish_prompt_char "
- # set PROMPT_END "\n$BYellow > "
- #
- # set -e __CURRENT_GIT_STATUS
- # set gitstatus "$__GIT_PROMPT_DIR/gitstatus.py"
- #
- # set _GIT_STATUS (python $gitstatus)
- # set __CURRENT_GIT_STATUS $_GIT_STATUS
- #
- # set __CURRENT_GIT_STATUS_PARAM_COUNT (count $__CURRENT_GIT_STATUS)
- #
- # if not test "0" -eq $__CURRENT_GIT_STATUS_PARAM_COUNT
- # set GIT_BRANCH $__CURRENT_GIT_STATUS[1]
- # set GIT_REMOTE "$__CURRENT_GIT_STATUS[2]"
- # if contains "." "$GIT_REMOTE"
- # set -e GIT_REMOTE
- # end
- # set GIT_STAGED $__CURRENT_GIT_STATUS[3]
- # set GIT_CONFLICTS $__CURRENT_GIT_STATUS[4]
- # set GIT_CHANGED $__CURRENT_GIT_STATUS[5]
- # set GIT_UNTRACKED $__CURRENT_GIT_STATUS[6]
- # set GIT_STASHED $__CURRENT_GIT_STATUS[7]
- # set GIT_CLEAN $__CURRENT_GIT_STATUS[8]
- # end
- #
- # if test -n "$__CURRENT_GIT_STATUS"
- # set STATUS " $GIT_PROMPT_PREFIX$GIT_PROMPT_BRANCH$GIT_BRANCH$ResetColor"
- #
- # if set -q GIT_REMOTE
- # set STATUS "$STATUS$GIT_PROMPT_REMOTE$GIT_REMOTE$ResetColor"
- # end
- #
- # set STATUS "$STATUS$GIT_PROMPT_SEPARATOR"
- #
- # if [ $GIT_STAGED != "0" ]
- # set STATUS "$STATUS$GIT_PROMPT_STAGED$GIT_STAGED$ResetColor"
- # end
- #
- # if [ $GIT_CONFLICTS != "0" ]
- # set STATUS "$STATUS$GIT_PROMPT_CONFLICTS$GIT_CONFLICTS$ResetColor"
- # end
- #
- # if [ $GIT_CHANGED != "0" ]
- # set STATUS "$STATUS$GIT_PROMPT_CHANGED$GIT_CHANGED$ResetColor"
- # end
- #
- # if [ "$GIT_UNTRACKED" != "0" ]
- # set STATUS "$STATUS$GIT_PROMPT_UNTRACKED$GIT_UNTRACKED$ResetColor"
- # end
- #
- # if [ "$GIT_STASHED" != "0" ]
- # set STATUS "$STATUS$GIT_PROMPT_STASHED$GIT_STASHED$ResetColor"
- # end
- #
- # if [ "$GIT_CLEAN" = "1" ]
- # set STATUS "$STATUS$GIT_PROMPT_CLEAN"
- # end
- #
- # set STATUS "$STATUS$ResetColor$GIT_PROMPT_SUFFIX"
- #
- # set PS1 "$PROMPT_START$STATUS$PROMPT_END"
- # else
- # set PS1 "$PROMPT_START$PROMPT_END"
- # end
- #
- # echo -e $PS1
- # end
- #
- # function fish_right_prompt -d "Write out the right prompt"
- # # set_color -o yellow
- # # date "+%I:%M %p "
- # set_color normal
- # date "+%A %d %B %Y | %I:%M %p "
- # # date
- # end
- ### END OF FUNCTIONS ###
- ### ALIASES ###
- # alias ls='ls --color=auto'
- # alias ll='ls -l'
- # alias ll='ls -lh'
- # alias la='ls -la'
- # alias la='ls -lah'
- # alias lf='ls -lFh'
- alias lse='exa -g --color=always --group-directories-first'
- alias lle='lse -l'
- alias ls='lsd --group-dirs=first'
- alias ll='lsd --blocks=permission,links,user,group,size,date,name --group-dirs=first --date="+%d %b %H:%M"'
- alias la='ll -a'
- # alias bat='bat --theme gruvbox-dark' # theme moved to the .config/bat/config
- alias grep='grep --color=auto'
- alias fgrep='fgrep --color=auto'
- alias egrep='egrep --color=auto'
- alias ifconfig=/sbin/ifconfig
- # confirm before overwriting something
- alias cp="cp -i"
- alias mv='mv -i'
- alias rm='rm -i'
- # switch between shells
- alias tobash="sudo chsh $USER -s /usr/bin/env bash && echo 'Now log out.'"
- alias tozsh="sudo chsh $USER -s /usr/bin/env zsh && echo 'Now log out.'"
- alias tofish="sudo chsh $USER -s /usr/bin/env fish && echo 'Now log out.'"
- # navigation
- alias ..='cd ..'
- alias ...='cd ../..'
- alias .3='cd ../../..'
- alias .4='cd ../../../..'
- alias .5='cd ../../../../..'
- ## get top process eating memory
- alias psmem='ps auxf | sort -nr -k 4'
- alias psmem10='ps auxf | sort -nr -k 4 | head -10'
- ## get top process eating cpu ##
- alias pscpu='ps auxf | sort -nr -k 3'
- alias pscpu10='ps auxf | sort -nr -k 3 | head -10'
- ## git
- alias config='/usr/bin/git --git-dir=$HOME/.dotfiles.git --work-tree=$HOME'
- ### END OF ALIASES ###
- ### EXTRA fish_prompt.fish from theme-cbjohnson ###
- # function fish_prompt
- # # Cache exit status
- # set -l last_status $status
- #
- # # Just calculate these once, to save a few cycles when displaying the 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_char
- # switch (id -u)
- # case 0
- # set -g __fish_prompt_char \u276f\u276f
- # case '*'
- # set -g __fish_prompt_char »
- # end
- # end
- #
- # # Setup colors
- # set -l normal (set_color normal)
- # set -l cyan (set_color cyan)
- # set -l yellow (set_color yellow)
- # set -l bpurple (set_color -o purple)
- # set -l bred (set_color -o red)
- # set -l bcyan (set_color -o cyan)
- # set -l bwhite (set_color -o white)
- #
- # # Configure __fish_git_prompt
- # set -g __fish_git_prompt_show_informative_status true
- # set -g __fish_git_prompt_showcolorhints true
- #
- # # Color prompt char red for non-zero exit status
- # set -l pcolor $bpurple
- # if [ $last_status -ne 0 ]
- # set pcolor $bred
- # end
- #
- # # Top
- # echo -n $cyan$USER$normal at $yellow$__fish_prompt_hostname$normal in $bred(prompt_pwd)$normal
- # __fish_git_prompt
- #
- # echo
- #
- # # Bottom
- # echo -n $pcolor$__fish_prompt_char $normal
- # end
- # opam configuration
- source /home/alexander/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true
- # Icons for lf file manager
- set LF_ICONS "\
- fi=:\
- di=:\
- ln=:\
- pi=|:\
- so=ﯲ:\
- db=:\
- cd=c:\
- or=:\
- su=:\
- sg=:\
- tw=:\
- ow=w:\
- st=:\
- ex=:\
- *.7z=:\
- *.a=:\
- *.aac=:\
- *.ace=:\
- *.ai=:\
- *.alz=:\
- *.apk=:\
- *.arc=:\
- *.arj=:\
- *.asf=:\
- *.asm=:\
- *.asp=:\
- *.au=:\
- *.aup=:\
- *.avi=:\
- *.avi=:\
- *.awk=:\
- *.bash=:\
- *.bat=:\
- *.bmp=:\
- *.bz2=:\
- *.bz=:\
- *.c++=:\
- *.c=:\
- *.cab=:\
- *.cbr=:\
- *.cbz=:\
- *.cc=:\
- *.cgm=:\
- *.class=:\
- *.clj=:\
- *.cljc=:\
- *.cljs=:\
- *.cmake=:\
- *.cmd=:\
- *.coffee=:\
- *.conf=:\
- *.cp=:\
- *.cpio=:\
- *.cpp=:\
- *.cs=:\
- *.css=:\
- *.cue=:\
- *.csh=:\
- *.cvs=:\
- *.cxx=:\
- *.d=:\
- *.dart=:\
- *.db=:\
- *.deb=:\
- *.diff=:\
- *.dl=:\
- *.dll=:\
- *.doc=:\
- *.docx=:\
- *.dump=:\
- *.dwm=:\
- *.dz=:\
- *.ear=:\
- *.edn=:\
- *.eex=:\
- *.efi=:\
- *.ejs=:\
- *.elf=:\
- *.elm=:\
- *.emf=:\
- *.epub=:\
- *.erl=:\
- *.esd=:\
- *.ex=:\
- *.exe=:\
- *.exs=:\
- *.f#=:\
- *.fifo=|:\
- *.fish=:\
- *.flac=:\
- *.flc=:\
- *.fli=:\
- *.flv=:\
- *.flv=:\
- *.fs=:\
- *.fsi=:\
- *.fsscript=:\
- *.fsx=:\
- *.gem=:\
- *.gif=:\
- *.git=:\
- *.gl=:\
- *.go=:\
- *.gz=:\
- *.gzip=:\
- *.h=:\
- *.hbs=:\
- *.hh=:\
- *.hpp=:\
- *.hrl=:\
- *.hs=:\
- *.htaccess=:\
- *.htm=:\
- *.html=:\
- *.htpasswd=:\
- *.ico=:\
- *.img=:\
- *.ini=:\
- *.iso=:\
- *.jar=:\
- *.java=:\
- *.jl=:\
- *.jpeg=:\
- *.jpg=:\
- *.js=:\
- *.json=:\
- *.jsx=:\
- *.key=:\
- *.ksh=:\
- *.less=:\
- *.lha=:\
- *.lhs=:\
- *.log=:\
- *.lrz=:\
- *.lua=:\
- *.lz4=:\
- *.lz=:\
- *.lzh=:\
- *.lzma=:\
- *.lzo=:\
- *.m2v=:\
- *.m4a=:\
- *.m4v=:\
- *.markdown=:\
- *.md=:\
- *.mid=:\
- *.midi=:\
- *.mjpeg=:\
- *.mjpg=:\
- *.mka=:\
- *.mkv=:\
- *.ml=λ:\
- *.mli=λ:\
- *.mng=:\
- *.mov=:\
- *.mp3=:\
- *.mp4=:\
- *.mp4v=:\
- *.mpc=:\
- *.mpeg=:\
- *.mpg=:\
- *.msi=:\
- *.mustache=:\
- *.nix=:\
- *.nuv=:\
- *.o=:\
- *.oga=:\
- *.ogg=:\
- *.ogm=:\
- *.ogv=:\
- *.ogx=:\
- *.opus=:\
- *.pbm=:\
- *.pcx=:\
- *.pdf=:\
- *.pgm=:\
- *.php=:\
- *.pl=:\
- *.pm=:\
- *.png=:\
- *.ppk=:\
- *.ppm=:\
- *.ppt=:\
- *.pptx=:\
- *.pro=:\
- *.ps1=:\
- *.psb=:\
- *.psd=:\
- *.pub=:\
- *.py=:\
- *.pyc=:\
- *.pyd=:\
- *.pyo=:\
- *.qt=:\
- *.ra=:\
- *.rar=:\
- *.rb=:\
- *.rc=:\
- *.rlib=:\
- *.rm=:\
- *.rmvb=:\
- *.rom=:\
- *.rpm=:\
- *.rs=:\
- *.rss=:\
- *.rtf=:\
- *.rz=:\
- *.s=:\
- *.sar=:\
- *.scala=:\
- *.scss=:\
- *.sh=:\
- *.slim=:\
- *.sln=:\
- *.so=:\
- *.spx=:\
- *.sql=:\
- *.styl=:\
- *.suo=:\
- *.svg=:\
- *.svgz=:\
- *.swm=:\
- *.t7z=:\
- *.t=:\
- *.tar=:\
- *.taz=:\
- *.tbz2=:\
- *.tbz=:\
- *.tga=:\
- *.tgz=:\
- *.tif=:\
- *.tiff=:\
- *.tlz=:\
- *.ts=:\
- *.twig=:\
- *.txz=:\
- *.tz=:\
- *.tzo=:\
- *.tzst=:\
- *.vim=:\
- *.vimrc=:\
- *.vob=:\
- *.war=:\
- *.wav=:\
- *.wav=:\
- *.webm=:\
- *.wim=:\
- *.wmv=:\
- *.xbm=:\
- *.xbps=:\
- *.xcf=:\
- *.xhtml=:\
- *.xls=:\
- *.xlsx=:\
- *.xml=:\
- *.xpm=:\
- *.xspf=:\
- *.xul=:\
- *.xwd=:\
- *.xz=:\
- *.yaml=:\
- *.yml=:\
- *.yuv=:\
- *.z=:\
- *.zip=:\
- *.zoo=:\
- *.zsh=:\
- *.zst=:\
- *.src=:\
- *.ebuild=:\
- "
- # set LF_ICONS "\
- # tw=:\
- # st=:\
- # ow=:\
- # dt=:\
- # di=:\
- # fi=:\
- # ln=:\
- # or=:\
- # *.7z=:\
- # *.a=:\
- # *.ai=:\
- # *.apk=:\
- # *.asm=:\
- # *.asp=:\
- # *.aup=:\
- # *.avi=:\
- # *.awk=:\
- # *.bash=:\
- # *.bat=:\
- # *.bmp=:\
- # *.bz2=:\
- # *.c=:\
- # *.c++=:\
- # *.cab=:\
- # *.cbr=:\
- # *.cbz=:\
- # *.cc=:\
- # *.class=:\
- # *.clj=:\
- # *.cljc=:\
- # *.cljs=:\
- # *.cmake=:\
- # *.coffee=:\
- # *.conf=:\
- # *.cp=:\
- # *.cpio=:\
- # *.cpp=:\
- # *.cs=:\
- # *.csh=:\
- # *.css=:\
- # *.cue=:\
- # *.cvs=:\
- # *.cxx=:\
- # *.d=:\
- # *.dart=:\
- # *.db=:\
- # *.deb=:\
- # *.diff=:\
- # *.dll=:\
- # *.doc=:\
- # *.docx=:\
- # *.dump=:\
- # *.edn=:\
- # *.eex=:\
- # *.efi=:\
- # *.ejs=:\
- # *.elf=:\
- # *.elm=:\
- # *.epub=:\
- # *.erl=:\
- # *.ex=:\
- # *.exe=:\
- # *.exs=:\
- # *.f#=:\
- # *.fifo=|
- # *.fish=:\
- # *.flac=:\
- # *.flv=:\
- # *.fs=:\
- # *.fsi=:\
- # *.fsscript=:\
- # *.fsx=:\
- # *.gem=:\
- # *.gemspec=:\
- # *.gif=:\
- # .git=:\
- # *.go=:\
- # *.gz=:\
- # *.gzip=:\
- # *.h=:\
- # *.haml=:\
- # *.hbs=:\
- # *.hh=:\
- # *.hpp=:\
- # *.hrl=:\
- # *.hs=:\
- # *.htaccess=:\
- # *.htm=:\
- # *.html=:\
- # *.htpasswd=:\
- # *.hxx=:\
- # *.ico=:\
- # *.img=:\
- # *.ini=:\
- # *.iso=:\
- # *.jar=:\
- # *.java=:\
- # *.jl=:\
- # *.jpeg=:\
- # *.jpg=:\
- # *.js=:\
- # *.json=:\
- # *.jsx=:\
- # *.key=:\
- # *.ksh=:\
- # *.leex=:\
- # *.less=:\
- # *.lha=:\
- # *.lhs=:\
- # *.log=:\
- # *.lua=:\
- # *.lzh=:\
- # *.lzma=:\
- # *.m4a=:\
- # *.m4v=:\
- # *.markdown=:\
- # *.md=:\
- # *.mdx=:\
- # *.mjs=:\
- # *.mkv=:\
- # *.ml=λ:\
- # *.mli=λ:\
- # *.mov=:\
- # *.mp3=:\
- # *.mp4=:\
- # *.mpeg=:\
- # *.mpg=:\
- # *.msi=:\
- # *.mustache=:\
- # *.nix=:\
- # *.o=:\
- # *.ogg=:\
- # *.pdf=:\
- # *.php=:\
- # *.pl=:\
- # *.pm=:\
- # *.png=:\
- # *.pp=:\
- # *.ppt=:\
- # *.pptx=:\
- # *.ps1=:\
- # *.psb=:\
- # *.psd=:\
- # *.pub=:\
- # *.py=:\
- # *.pyc=:\
- # *.pyd=:\
- # *.pyo=:\
- # *.r=ﳒ:\
- # *.rake=:\
- # *.rar=:\
- # *.rb=:\
- # *.rc=:\
- # *.rlib=:\
- # *.rmd=:\
- # *.rom=:\
- # *.rpm=:\
- # *.rproj=鉶:\
- # *.rs=:\
- # *.rss=:\
- # *.rtf=:\
- # *.s=:\
- # *.sass=:\
- # *.scala=:\
- # *.scss=:\
- # *.sh=:\
- # *.slim=:\
- # *.sln=:\
- # *.so=:\
- # *.sql=:\
- # *.styl=:\
- # *.suo=:\
- # *.swift=:\
- # *.t=:\
- # *.tar=:\
- # *.tex=ﭨ:\
- # *.tgz=:\
- # *.toml=:\
- # *.ts=:\
- # *.tsx=:\
- # *.twig=:\
- # *.vim=:\
- # *.vimrc=:\
- # *.vue=﵂:\
- # *.wav=:\
- # *.webm=:\
- # *.webmanifest=:\
- # *.webp=:\
- # *.xbps=:\
- # *.xcplayground=:\
- # *.xhtml=:\
- # *.xls=:\
- # *.xlsx=:\
- # *.xml=:\
- # *.xul=:\
- # *.xz=:\
- # *.yaml=:\
- # *.yml=:\
- # *.zip=:\
- # *.zsh=:\
- # "
|