.bashrc 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  1. # For ranger, htop and other console progs in Qtile ---------------------------
  2. unset COLUMNS
  3. unset LINES
  4. ###############################################################################
  5. # EXPORTs
  6. ###############################################################################
  7. export HOME=$(echo /home/$USER)
  8. export GHCUP_INSTALL_BASE_PREFIX="$HOME/.config" # for GHCUP
  9. export GOPATH="$HOME/go"
  10. # export
  11. PATH=$PATH:$HOME/.local/bin:$HOME/.cargo/bin:$HOME/.config/vifm/scripts:$HOME/Programs/AppImageApplications:$GHCUP_INSTALL_BASE_PREFIX/.ghcup/bin:$HOME/Programs/Android_SDK/platform-tools:$GOPATH/bin
  12. export EDITOR="vim" # vim is either a link to nvim or just vim
  13. export VISUAL="gvim" # gvim is either a link to nvim-qt or just gvim
  14. export TERM="xterm-256color"
  15. export TERMINAL="alacritty"
  16. export BROWSER="brave"
  17. export MANPAGER="bat man -p'" # $MANPAGER use batcat to read mans
  18. # export MANPAGER="sh -c 'col -bx | bat -l man -p'" # $MANPAGER use batcat to read mans
  19. export RANGER_LOAD_DEFAULT_RC=FALSE # to avoid loading ranger's config twice
  20. export ANDROID_SDK="$HOME/Programs/Android_SDK"
  21. export XDG_CONFIG_HOME="$HOME/.config"
  22. export XDG_DATA_HOME="$HOME/.local/share"
  23. # export XDG_DATA_DIRS="$HOME/.local/share/flatpak/exports/share"
  24. # export XDG_DATA_DIRS+=":/var/lib/flatpak/exports/share"
  25. # export XDG_DATA_DIRS+=":$HOME/.local/share/flatpak/exports/share/applications"
  26. # export XDG_DATA_DIRS+=":/var/lib/flatpak/exports/share/applications"
  27. export XDG_CACHE_HOME="$HOME/.cache"
  28. # If not running interactively, don't do anything -----------------------------
  29. case $- in
  30. *i*) ;;
  31. *) return;;
  32. esac
  33. ###############################################################################
  34. # HIST...
  35. ###############################################################################
  36. # don't put duplicate lines or lines starting with space in the history ------
  37. # See bash(1) for more options
  38. HISTCONTROL=ignoreboth
  39. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) ---------
  40. HISTSIZE=1000
  41. HISTFILESIZE=2000
  42. ###############################################################################
  43. # shopt
  44. ###############################################################################
  45. # append to the history file, don't overwrite it ------------------------------
  46. shopt -s histappend
  47. # check the window size after each command and, if necessary, -----------------
  48. # update the values of LINES and COLUMNS.
  49. shopt -s checkwinsize
  50. # If set, the pattern "**" used in a pathname expansion context will ----------
  51. # match all files and zero or more directories and subdirectories.
  52. # shopt -s globstar
  53. # enable programmable completion features (you don't need to enable -----------
  54. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  55. # sources /etc/bash.bashrc).
  56. if ! shopt -oq posix; then
  57. if [ -f /usr/share/bash-completion/bash_completion ]; then
  58. . /usr/share/bash-completion/bash_completion
  59. elif [ -f /etc/bash_completion ]; then
  60. . /etc/bash_completion
  61. fi
  62. fi
  63. ###############################################################################
  64. # prompt
  65. ###############################################################################
  66. # set variable identifying the chroot you work in (used in the prompt below) --
  67. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  68. debian_chroot=$(cat /etc/debian_chroot)
  69. fi
  70. # set a fancy prompt (non-color, unless we know we "want" color) --------------
  71. case "$TERM" in
  72. xterm-color) color_prompt=yes;;
  73. esac
  74. # uncomment for a colored prompt, if the terminal has the capability; turned --
  75. # off by default to not distract the user: the focus in a terminal window
  76. # should be on the output of commands, not on the prompt
  77. # force_color_prompt=yes
  78. if [ -n "$force_color_prompt" ]; then
  79. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  80. # We have color support; assume it's compliant with Ecma-48
  81. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  82. # a case would tend to support setf rather than setaf.)
  83. color_prompt=yes
  84. else
  85. color_prompt=
  86. fi
  87. fi
  88. unset color_prompt force_color_prompt
  89. # # If this is an xterm set the title to user@host:dir --------------------------
  90. # case "$TERM" in
  91. # xterm*|rxvt*)
  92. # PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  93. # ;;
  94. # *)
  95. # ;;
  96. # esac
  97. GIT_PS1_SHOWDIRTYSTATE=true
  98. GIT_PS1_SHOWUNTRACKEDFILES=true
  99. GIT_PS1_SHOWCOLORHINTS=true
  100. # export PS1='\w$(__git_ps1 " (%s)")\$ '
  101. # PS1='\n \[\e[01;33m\]\u\[\e[01;37m\]@\[\e[01;32m\]\h:\[\e[01;34m\]\w\[\e[01;31m\]$(__git_ps1 " (%s)")\[\e[01;33m\]\n >_ \[\e[2m\]'
  102. PS1='\n \[\e[01;33m\]\u\[\e[01;37m\]@\[\e[01;32m\]\h:\[\e[01;34m\]\w\[\e[01;31m\]$(__git_ps1 " (%s)")\[\e[01;33m\]\n >_ \[\e[0m\]'
  103. ###############################################################################
  104. # ALIASES
  105. ###############################################################################
  106. # enable color support of ls and also add handy aliases -----------------------
  107. if [ -x /usr/bin/dircolors ]; then
  108. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  109. fi
  110. # Alias definitions -----------------------------------------------------------
  111. # You may want to put all your additions into a separate file like
  112. # ~/.bash_aliases, instead of adding them here directly.
  113. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  114. if [ -f ~/.bash_aliases ]; then
  115. . ~/.bash_aliases
  116. fi
  117. # alias ls='ls --color=auto'
  118. # alias ll='ls -l'
  119. # alias ll='ls -lh'
  120. # alias la='ls -la'
  121. # alias la='ls -lah'
  122. # alias lf='ls -lFh'
  123. alias lse='exa -g --color=always --group-directories-first'
  124. alias lle='lse -l'
  125. alias ls='lsd --group-dirs=first'
  126. alias ll='lsd --blocks=permission,links,user,group,size,date,name --group-dirs=first --date="+%d %b %H:%M"'
  127. alias la='ll -a'
  128. # alias bat='bat --theme gruvbox-dark' # theme moved to the .config/bat/config
  129. alias grep='grep --color=auto'
  130. alias fgrep='fgrep --color=auto'
  131. alias egrep='egrep --color=auto'
  132. alias ifconfig=/sbin/ifconfig
  133. # confirm before overwriting something ----------------------------------------
  134. alias cp="cp -i"
  135. alias mv='mv -i'
  136. alias rm='rm -i'
  137. # switch between shells -------------------------------------------------------
  138. alias tobash="sudo chsh $USER -s /usr/bin/env bash && echo 'Now log out.'"
  139. alias tozsh="sudo chsh $USER -s /usr/bin/env zsh && echo 'Now log out.'"
  140. alias tofish="sudo chsh $USER -s /usr/bin/env fish && echo 'Now log out.'"
  141. # navigation ------------------------------------------------------------------
  142. alias ..='cd ..'
  143. alias ...='cd ../..'
  144. alias .3='cd ../../..'
  145. alias .4='cd ../../../..'
  146. alias .5='cd ../../../../..'
  147. # get top process eating memory -----------------------------------------------
  148. alias psmem='ps auxf | sort -nr -k 4'
  149. alias psmem10='ps auxf | sort -nr -k 4 | head -10'
  150. # get top process eating cpu --------------------------------------------------
  151. alias pscpu='ps auxf | sort -nr -k 3'
  152. alias pscpu10='ps auxf | sort -nr -k 3 | head -10'
  153. # git -------------------------------------------------------------------------
  154. alias config='/usr/bin/git --git-dir=$HOME/.dotfiles.git --work-tree=$HOME'
  155. # run some programs -----------------------------------------------------------
  156. alias v='vim'
  157. alias f='ranger'
  158. alias vf='vifm'
  159. alias emacs="emacsclient -c -a 'emacs'"
  160. ###############################################################################
  161. # Source
  162. ###############################################################################
  163. # git -------------------------------------------------------------------------
  164. source ~/.git-completion.bash
  165. source ~/.git-prompt.sh
  166. # asdf manager ----------------------------------------------------------------
  167. source $HOME/.asdf/asdf.sh
  168. source $HOME/.asdf/completions/asdf.bash
  169. # Fuzzy finder ----------------------------------------------------------------
  170. [ -f ~/.fzf.bash ] && source ~/.fzf.bash
  171. # # broot -----------------------------------------------------------------------
  172. # source /home/alexander/.config/broot/launcher/bash/br
  173. # Run neofetch ----------------------------------------------------------------
  174. neofetch
  175. # Icons for lf file manager ---------------------------------------------------
  176. # export LF_ICONS="\
  177. # fi=:\
  178. # di=:\
  179. # ln=:\
  180. # pi=|:\
  181. # so=ﯲ:\
  182. # db=:\
  183. # cd=c:\
  184. # or=:\
  185. # su=:\
  186. # sg=:\
  187. # tw=:\
  188. # ow=w:\
  189. # st=:\
  190. # ex=:\
  191. # *.7z=:\
  192. # *.a=:\
  193. # *.aac=:\
  194. # *.ace=:\
  195. # *.ai=:\
  196. # *.alz=:\
  197. # *.apk=:\
  198. # *.arc=:\
  199. # *.arj=:\
  200. # *.asf=:\
  201. # *.asm=:\
  202. # *.asp=:\
  203. # *.au=:\
  204. # *.aup=:\
  205. # *.avi=:\
  206. # *.avi=:\
  207. # *.awk=:\
  208. # *.bash=:\
  209. # *.bat=:\
  210. # *.bmp=:\
  211. # *.bz2=:\
  212. # *.bz=:\
  213. # *.c++=:\
  214. # *.c=:\
  215. # *.cab=:\
  216. # *.cbr=:\
  217. # *.cbz=:\
  218. # *.cc=:\
  219. # *.cgm=:\
  220. # *.class=:\
  221. # *.clj=:\
  222. # *.cljc=:\
  223. # *.cljs=:\
  224. # *.cmake=:\
  225. # *.cmd=:\
  226. # *.coffee=:\
  227. # *.conf=:\
  228. # *.cp=:\
  229. # *.cpio=:\
  230. # *.cpp=:\
  231. # *.cs=:\
  232. # *.css=:\
  233. # *.cue=:\
  234. # *.csh=:\
  235. # *.cvs=:\
  236. # *.cxx=:\
  237. # *.d=:\
  238. # *.dart=:\
  239. # *.db=:\
  240. # *.deb=:\
  241. # *.diff=:\
  242. # *.dl=:\
  243. # *.dll=:\
  244. # *.doc=:\
  245. # *.docx=:\
  246. # *.dump=:\
  247. # *.dwm=:\
  248. # *.dz=:\
  249. # *.ear=:\
  250. # *.edn=:\
  251. # *.eex=:\
  252. # *.efi=:\
  253. # *.ejs=:\
  254. # *.elf=:\
  255. # *.elm=:\
  256. # *.emf=:\
  257. # *.epub=:\
  258. # *.erl=:\
  259. # *.esd=:\
  260. # *.ex=:\
  261. # *.exe=:\
  262. # *.exs=:\
  263. # *.f#=:\
  264. # *.fifo=|:\
  265. # *.fish=:\
  266. # *.flac=:\
  267. # *.flc=:\
  268. # *.fli=:\
  269. # *.flv=:\
  270. # *.flv=:\
  271. # *.fs=:\
  272. # *.fsi=:\
  273. # *.fsscript=:\
  274. # *.fsx=:\
  275. # *.gem=:\
  276. # *.gif=:\
  277. # *.git=:\
  278. # *.gl=:\
  279. # *.go=:\
  280. # *.gz=:\
  281. # *.gzip=:\
  282. # *.h=:\
  283. # *.hbs=:\
  284. # *.hh=:\
  285. # *.hpp=:\
  286. # *.hrl=:\
  287. # *.hs=:\
  288. # *.htaccess=:\
  289. # *.htm=:\
  290. # *.html=:\
  291. # *.htpasswd=:\
  292. # *.ico=:\
  293. # *.img=:\
  294. # *.ini=:\
  295. # *.iso=:\
  296. # *.jar=:\
  297. # *.java=:\
  298. # *.jl=:\
  299. # *.jpeg=:\
  300. # *.jpg=:\
  301. # *.js=:\
  302. # *.json=:\
  303. # *.jsx=:\
  304. # *.key=:\
  305. # *.ksh=:\
  306. # *.less=:\
  307. # *.lha=:\
  308. # *.lhs=:\
  309. # *.log=:\
  310. # *.lrz=:\
  311. # *.lua=:\
  312. # *.lz4=:\
  313. # *.lz=:\
  314. # *.lzh=:\
  315. # *.lzma=:\
  316. # *.lzo=:\
  317. # *.m2v=:\
  318. # *.m4a=:\
  319. # *.m4v=:\
  320. # *.markdown=:\
  321. # *.md=:\
  322. # *.mid=:\
  323. # *.midi=:\
  324. # *.mjpeg=:\
  325. # *.mjpg=:\
  326. # *.mka=:\
  327. # *.mkv=:\
  328. # *.ml=λ:\
  329. # *.mli=λ:\
  330. # *.mng=:\
  331. # *.mov=:\
  332. # *.mp3=:\
  333. # *.mp4=:\
  334. # *.mp4v=:\
  335. # *.mpc=:\
  336. # *.mpeg=:\
  337. # *.mpg=:\
  338. # *.msi=:\
  339. # *.mustache=:\
  340. # *.nix=:\
  341. # *.nuv=:\
  342. # *.o=:\
  343. # *.oga=:\
  344. # *.ogg=:\
  345. # *.ogm=:\
  346. # *.ogv=:\
  347. # *.ogx=:\
  348. # *.opus=:\
  349. # *.pbm=:\
  350. # *.pcx=:\
  351. # *.pdf=:\
  352. # *.pgm=:\
  353. # *.php=:\
  354. # *.pl=:\
  355. # *.pm=:\
  356. # *.png=:\
  357. # *.ppk=:\
  358. # *.ppm=:\
  359. # *.ppt=:\
  360. # *.pptx=:\
  361. # *.pro=:\
  362. # *.ps1=:\
  363. # *.psb=:\
  364. # *.psd=:\
  365. # *.pub=:\
  366. # *.py=:\
  367. # *.pyc=:\
  368. # *.pyd=:\
  369. # *.pyo=:\
  370. # *.qt=:\
  371. # *.ra=:\
  372. # *.rar=:\
  373. # *.rb=:\
  374. # *.rc=:\
  375. # *.rlib=:\
  376. # *.rm=:\
  377. # *.rmvb=:\
  378. # *.rom=:\
  379. # *.rpm=:\
  380. # *.rs=:\
  381. # *.rss=:\
  382. # *.rtf=:\
  383. # *.rz=:\
  384. # *.s=:\
  385. # *.sar=:\
  386. # *.scala=:\
  387. # *.scss=:\
  388. # *.sh=:\
  389. # *.slim=:\
  390. # *.sln=:\
  391. # *.so=:\
  392. # *.spx=:\
  393. # *.sql=:\
  394. # *.styl=:\
  395. # *.suo=:\
  396. # *.svg=:\
  397. # *.svgz=:\
  398. # *.swm=:\
  399. # *.t7z=:\
  400. # *.t=:\
  401. # *.tar=:\
  402. # *.taz=:\
  403. # *.tbz2=:\
  404. # *.tbz=:\
  405. # *.tga=:\
  406. # *.tgz=:\
  407. # *.tif=:\
  408. # *.tiff=:\
  409. # *.tlz=:\
  410. # *.ts=:\
  411. # *.twig=:\
  412. # *.txz=:\
  413. # *.tz=:\
  414. # *.tzo=:\
  415. # *.tzst=:\
  416. # *.vim=:\
  417. # *.vimrc=:\
  418. # *.vob=:\
  419. # *.war=:\
  420. # *.wav=:\
  421. # *.wav=:\
  422. # *.webm=:\
  423. # *.wim=:\
  424. # *.wmv=:\
  425. # *.xbm=:\
  426. # *.xbps=:\
  427. # *.xcf=:\
  428. # *.xhtml=:\
  429. # *.xls=:\
  430. # *.xlsx=:\
  431. # *.xml=:\
  432. # *.xpm=:\
  433. # *.xspf=:\
  434. # *.xul=:\
  435. # *.xwd=:\
  436. # *.xz=:\
  437. # *.yaml=:\
  438. # *.yml=:\
  439. # *.yuv=:\
  440. # *.z=:\
  441. # *.zip=:\
  442. # *.zoo=:\
  443. # *.zsh=:\
  444. # *.zst=:\
  445. # *.src=:\
  446. # *.ebuild=:\
  447. # "
  448. #
  449. # # export LF_ICONS="\
  450. # # tw=:\
  451. # # st=:\
  452. # # ow=:\
  453. # # dt=:\
  454. # # di=:\
  455. # # fi=:\
  456. # # ln=:\
  457. # # or=:\
  458. # # *.7z=:\
  459. # # *.a=:\
  460. # # *.ai=:\
  461. # # *.apk=:\
  462. # # *.asm=:\
  463. # # *.asp=:\
  464. # # *.aup=:\
  465. # # *.avi=:\
  466. # # *.awk=:\
  467. # # *.bash=:\
  468. # # *.bat=:\
  469. # # *.bmp=:\
  470. # # *.bz2=:\
  471. # # *.c=:\
  472. # # *.c++=:\
  473. # # *.cab=:\
  474. # # *.cbr=:\
  475. # # *.cbz=:\
  476. # # *.cc=:\
  477. # # *.class=:\
  478. # # *.clj=:\
  479. # # *.cljc=:\
  480. # # *.cljs=:\
  481. # # *.cmake=:\
  482. # # *.coffee=:\
  483. # # *.conf=:\
  484. # # *.cp=:\
  485. # # *.cpio=:\
  486. # # *.cpp=:\
  487. # # *.cs=:\
  488. # # *.csh=:\
  489. # # *.css=:\
  490. # # *.cue=:\
  491. # # *.cvs=:\
  492. # # *.cxx=:\
  493. # # *.d=:\
  494. # # *.dart=:\
  495. # # *.db=:\
  496. # # *.deb=:\
  497. # # *.diff=:\
  498. # # *.dll=:\
  499. # # *.doc=:\
  500. # # *.docx=:\
  501. # # *.dump=:\
  502. # # *.edn=:\
  503. # # *.eex=:\
  504. # # *.efi=:\
  505. # # *.ejs=:\
  506. # # *.elf=:\
  507. # # *.elm=:\
  508. # # *.epub=:\
  509. # # *.erl=:\
  510. # # *.ex=:\
  511. # # *.exe=:\
  512. # # *.exs=:\
  513. # # *.f#=:\
  514. # # *.fifo=|
  515. # # *.fish=:\
  516. # # *.flac=:\
  517. # # *.flv=:\
  518. # # *.fs=:\
  519. # # *.fsi=:\
  520. # # *.fsscript=:\
  521. # # *.fsx=:\
  522. # # *.gem=:\
  523. # # *.gemspec=:\
  524. # # *.gif=:\
  525. # # .git=:\
  526. # # *.go=:\
  527. # # *.gz=:\
  528. # # *.gzip=:\
  529. # # *.h=:\
  530. # # *.haml=:\
  531. # # *.hbs=:\
  532. # # *.hh=:\
  533. # # *.hpp=:\
  534. # # *.hrl=:\
  535. # # *.hs=:\
  536. # # *.htaccess=:\
  537. # # *.htm=:\
  538. # # *.html=:\
  539. # # *.htpasswd=:\
  540. # # *.hxx=:\
  541. # # *.ico=:\
  542. # # *.img=:\
  543. # # *.ini=:\
  544. # # *.iso=:\
  545. # # *.jar=:\
  546. # # *.java=:\
  547. # # *.jl=:\
  548. # # *.jpeg=:\
  549. # # *.jpg=:\
  550. # # *.js=:\
  551. # # *.json=:\
  552. # # *.jsx=:\
  553. # # *.key=:\
  554. # # *.ksh=:\
  555. # # *.leex=:\
  556. # # *.less=:\
  557. # # *.lha=:\
  558. # # *.lhs=:\
  559. # # *.log=:\
  560. # # *.lua=:\
  561. # # *.lzh=:\
  562. # # *.lzma=:\
  563. # # *.m4a=:\
  564. # # *.m4v=:\
  565. # # *.markdown=:\
  566. # # *.md=:\
  567. # # *.mdx=:\
  568. # # *.mjs=:\
  569. # # *.mkv=:\
  570. # # *.ml=λ:\
  571. # # *.mli=λ:\
  572. # # *.mov=:\
  573. # # *.mp3=:\
  574. # # *.mp4=:\
  575. # # *.mpeg=:\
  576. # # *.mpg=:\
  577. # # *.msi=:\
  578. # # *.mustache=:\
  579. # # *.nix=:\
  580. # # *.o=:\
  581. # # *.ogg=:\
  582. # # *.pdf=:\
  583. # # *.php=:\
  584. # # *.pl=:\
  585. # # *.pm=:\
  586. # # *.png=:\
  587. # # *.pp=:\
  588. # # *.ppt=:\
  589. # # *.pptx=:\
  590. # # *.ps1=:\
  591. # # *.psb=:\
  592. # # *.psd=:\
  593. # # *.pub=:\
  594. # # *.py=:\
  595. # # *.pyc=:\
  596. # # *.pyd=:\
  597. # # *.pyo=:\
  598. # # *.r=ﳒ:\
  599. # # *.rake=:\
  600. # # *.rar=:\
  601. # # *.rb=:\
  602. # # *.rc=:\
  603. # # *.rlib=:\
  604. # # *.rmd=:\
  605. # # *.rom=:\
  606. # # *.rpm=:\
  607. # # *.rproj=鉶:\
  608. # # *.rs=:\
  609. # # *.rss=:\
  610. # # *.rtf=:\
  611. # # *.s=:\
  612. # # *.sass=:\
  613. # # *.scala=:\
  614. # # *.scss=:\
  615. # # *.sh=:\
  616. # # *.slim=:\
  617. # # *.sln=:\
  618. # # *.so=:\
  619. # # *.sql=:\
  620. # # *.styl=:\
  621. # # *.suo=:\
  622. # # *.swift=:\
  623. # # *.t=:\
  624. # # *.tar=:\
  625. # # *.tex=ﭨ:\
  626. # # *.tgz=:\
  627. # # *.toml=:\
  628. # # *.ts=:\
  629. # # *.tsx=:\
  630. # # *.twig=:\
  631. # # *.vim=:\
  632. # # *.vimrc=:\
  633. # # *.vue=﵂:\
  634. # # *.wav=:\
  635. # # *.webm=:\
  636. # # *.webmanifest=:\
  637. # # *.webp=:\
  638. # # *.xbps=:\
  639. # # *.xcplayground=:\
  640. # # *.xhtml=:\
  641. # # *.xls=:\
  642. # # *.xlsx=:\
  643. # # *.xml=:\
  644. # # *.xul=:\
  645. # # *.xz=:\
  646. # # *.yaml=:\
  647. # # *.yml=:\
  648. # # *.zip=:\
  649. # # *.zsh=:\
  650. # # "
  651. #