├── .Xresources ├── .config ├── bat │ └── config ├── bc.config ├── fontconfig │ └── fonts.conf ├── mimeapps.list ├── mpv │ ├── input.conf │ └── mpv.conf ├── mutt │ ├── acc-dotsource │ ├── acc-gmail │ ├── acc-gmx │ ├── address-providers │ │ ├── 00_default │ │ └── 05_carddav │ ├── colors │ ├── defaults │ ├── gpg │ ├── mailcap │ ├── signature │ └── variables.asc ├── nvim │ ├── init.vim │ └── snippets │ │ ├── c.snippets │ │ └── sh.snippets ├── procps │ └── toprc ├── profanity │ └── profrc ├── sxiv │ └── exec │ │ ├── image-info │ │ └── key-handler ├── systemd │ └── user │ │ └── udiskie.service ├── udiskie │ └── config.yml ├── user-dirs.dirs ├── vimb │ ├── config │ ├── scripts.js │ └── style.css ├── wyebadblock │ └── .gitkeep └── zsh │ ├── completion │ └── _magento │ └── git-prompt │ ├── gitstatus.py │ └── zshrc.sh ├── .ctags ├── .gitconfig ├── .gitignore ├── .gnupg ├── gpg-agent.conf └── gpg.conf ├── .local └── share │ └── nvim │ └── site │ └── autoload │ └── plug.vim ├── .moc ├── config └── eqsets │ ├── Classical │ ├── Club │ ├── Dance │ ├── Full_Bass │ ├── Full_Bass_Treble │ ├── Full_Treble │ ├── Laptop │ ├── Large_Hall │ ├── Live │ ├── Party │ ├── Pop │ ├── Reggae │ ├── Rock │ ├── Ska │ ├── Soft │ ├── Soft_rock │ └── Techno ├── .mplayer └── config ├── .muttrc ├── .tmux.conf ├── .xbindkeysrc ├── .xinitrc ├── .zprofile ├── .zshenv ├── .zshrc ├── README.md ├── bin ├── adblock-update ├── build-diff ├── carddav-sync ├── check-age ├── colors.sh ├── csv ├── datauri ├── db-table-extract ├── dmenu-run-recent ├── dtodo ├── formfiller ├── functions.sh ├── getcoretrace ├── getrankedmirrors ├── git-ctags-init ├── git-merge-svn ├── git-svn-clone-externals ├── gitstat ├── gvseq ├── ical-fetch ├── imgdiff ├── mage ├── mage-base.sh ├── mage-code-review ├── mage-grid ├── mage-model ├── mage-module ├── mage2-model ├── mage2-module ├── magentocompletion ├── md2html ├── minify ├── mycommits-by-date ├── mysqldump-extract ├── mysqlgraph ├── phpunit ├── phpunit2md ├── recode ├── speedtest ├── ssh-terminfo ├── switch-project ├── switchphp ├── tabs2csv ├── time-extract ├── timetrack ├── timetrack-dmenu ├── toggle-xdebug ├── vimb.sh ├── warmup-by-sitemap └── yt2mp3 ├── check.sh ├── excludes └── install.sh /.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.Xresources -------------------------------------------------------------------------------- /.config/bat/config: -------------------------------------------------------------------------------- 1 | --theme="Monokai Extended" 2 | -------------------------------------------------------------------------------- /.config/bc.config: -------------------------------------------------------------------------------- 1 | scale=4 2 | -------------------------------------------------------------------------------- /.config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mimeapps.list -------------------------------------------------------------------------------- /.config/mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mpv/input.conf -------------------------------------------------------------------------------- /.config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mpv/mpv.conf -------------------------------------------------------------------------------- /.config/mutt/acc-dotsource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/acc-dotsource -------------------------------------------------------------------------------- /.config/mutt/acc-gmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/acc-gmail -------------------------------------------------------------------------------- /.config/mutt/acc-gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/acc-gmx -------------------------------------------------------------------------------- /.config/mutt/address-providers/00_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/address-providers/00_default -------------------------------------------------------------------------------- /.config/mutt/address-providers/05_carddav: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | grep -i "$1" $XDG_CONFIG_HOME/mutt/carddav 3 | -------------------------------------------------------------------------------- /.config/mutt/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/colors -------------------------------------------------------------------------------- /.config/mutt/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/defaults -------------------------------------------------------------------------------- /.config/mutt/gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/gpg -------------------------------------------------------------------------------- /.config/mutt/mailcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/mailcap -------------------------------------------------------------------------------- /.config/mutt/signature: -------------------------------------------------------------------------------- 1 | Daniel Carl 2 | -------------------------------------------------------------------------------- /.config/mutt/variables.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/mutt/variables.asc -------------------------------------------------------------------------------- /.config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/nvim/init.vim -------------------------------------------------------------------------------- /.config/nvim/snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/nvim/snippets/c.snippets -------------------------------------------------------------------------------- /.config/nvim/snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/nvim/snippets/sh.snippets -------------------------------------------------------------------------------- /.config/procps/toprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/procps/toprc -------------------------------------------------------------------------------- /.config/profanity/profrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/profanity/profrc -------------------------------------------------------------------------------- /.config/sxiv/exec/image-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/sxiv/exec/image-info -------------------------------------------------------------------------------- /.config/sxiv/exec/key-handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/sxiv/exec/key-handler -------------------------------------------------------------------------------- /.config/systemd/user/udiskie.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/systemd/user/udiskie.service -------------------------------------------------------------------------------- /.config/udiskie/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/udiskie/config.yml -------------------------------------------------------------------------------- /.config/user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/user-dirs.dirs -------------------------------------------------------------------------------- /.config/vimb/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/vimb/config -------------------------------------------------------------------------------- /.config/vimb/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/vimb/scripts.js -------------------------------------------------------------------------------- /.config/vimb/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/vimb/style.css -------------------------------------------------------------------------------- /.config/wyebadblock/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/zsh/completion/_magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/zsh/completion/_magento -------------------------------------------------------------------------------- /.config/zsh/git-prompt/gitstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/zsh/git-prompt/gitstatus.py -------------------------------------------------------------------------------- /.config/zsh/git-prompt/zshrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.config/zsh/git-prompt/zshrc.sh -------------------------------------------------------------------------------- /.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.ctags -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | .config/vim/bundle 3 | -------------------------------------------------------------------------------- /.gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.gnupg/gpg-agent.conf -------------------------------------------------------------------------------- /.gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.gnupg/gpg.conf -------------------------------------------------------------------------------- /.local/share/nvim/site/autoload/plug.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.local/share/nvim/site/autoload/plug.vim -------------------------------------------------------------------------------- /.moc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/config -------------------------------------------------------------------------------- /.moc/eqsets/Classical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Classical -------------------------------------------------------------------------------- /.moc/eqsets/Club: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Club -------------------------------------------------------------------------------- /.moc/eqsets/Dance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Dance -------------------------------------------------------------------------------- /.moc/eqsets/Full_Bass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Full_Bass -------------------------------------------------------------------------------- /.moc/eqsets/Full_Bass_Treble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Full_Bass_Treble -------------------------------------------------------------------------------- /.moc/eqsets/Full_Treble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Full_Treble -------------------------------------------------------------------------------- /.moc/eqsets/Laptop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Laptop -------------------------------------------------------------------------------- /.moc/eqsets/Large_Hall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Large_Hall -------------------------------------------------------------------------------- /.moc/eqsets/Live: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Live -------------------------------------------------------------------------------- /.moc/eqsets/Party: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Party -------------------------------------------------------------------------------- /.moc/eqsets/Pop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Pop -------------------------------------------------------------------------------- /.moc/eqsets/Reggae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Reggae -------------------------------------------------------------------------------- /.moc/eqsets/Rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Rock -------------------------------------------------------------------------------- /.moc/eqsets/Ska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Ska -------------------------------------------------------------------------------- /.moc/eqsets/Soft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Soft -------------------------------------------------------------------------------- /.moc/eqsets/Soft_rock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Soft_rock -------------------------------------------------------------------------------- /.moc/eqsets/Techno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.moc/eqsets/Techno -------------------------------------------------------------------------------- /.mplayer/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.mplayer/config -------------------------------------------------------------------------------- /.muttrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.muttrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.xbindkeysrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.xbindkeysrc -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.xinitrc -------------------------------------------------------------------------------- /.zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.zprofile -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/adblock-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/adblock-update -------------------------------------------------------------------------------- /bin/build-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/build-diff -------------------------------------------------------------------------------- /bin/carddav-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/carddav-sync -------------------------------------------------------------------------------- /bin/check-age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/check-age -------------------------------------------------------------------------------- /bin/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/colors.sh -------------------------------------------------------------------------------- /bin/csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/csv -------------------------------------------------------------------------------- /bin/datauri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/datauri -------------------------------------------------------------------------------- /bin/db-table-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/db-table-extract -------------------------------------------------------------------------------- /bin/dmenu-run-recent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/dmenu-run-recent -------------------------------------------------------------------------------- /bin/dtodo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/dtodo -------------------------------------------------------------------------------- /bin/formfiller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/formfiller -------------------------------------------------------------------------------- /bin/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/functions.sh -------------------------------------------------------------------------------- /bin/getcoretrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/getcoretrace -------------------------------------------------------------------------------- /bin/getrankedmirrors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/getrankedmirrors -------------------------------------------------------------------------------- /bin/git-ctags-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/git-ctags-init -------------------------------------------------------------------------------- /bin/git-merge-svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/git-merge-svn -------------------------------------------------------------------------------- /bin/git-svn-clone-externals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/git-svn-clone-externals -------------------------------------------------------------------------------- /bin/gitstat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/gitstat -------------------------------------------------------------------------------- /bin/gvseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/gvseq -------------------------------------------------------------------------------- /bin/ical-fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/ical-fetch -------------------------------------------------------------------------------- /bin/imgdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/imgdiff -------------------------------------------------------------------------------- /bin/mage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage -------------------------------------------------------------------------------- /bin/mage-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage-base.sh -------------------------------------------------------------------------------- /bin/mage-code-review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage-code-review -------------------------------------------------------------------------------- /bin/mage-grid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage-grid -------------------------------------------------------------------------------- /bin/mage-model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage-model -------------------------------------------------------------------------------- /bin/mage-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage-module -------------------------------------------------------------------------------- /bin/mage2-model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage2-model -------------------------------------------------------------------------------- /bin/mage2-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mage2-module -------------------------------------------------------------------------------- /bin/magentocompletion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/magentocompletion -------------------------------------------------------------------------------- /bin/md2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/md2html -------------------------------------------------------------------------------- /bin/minify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/minify -------------------------------------------------------------------------------- /bin/mycommits-by-date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mycommits-by-date -------------------------------------------------------------------------------- /bin/mysqldump-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mysqldump-extract -------------------------------------------------------------------------------- /bin/mysqlgraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/mysqlgraph -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/phpunit -------------------------------------------------------------------------------- /bin/phpunit2md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/phpunit2md -------------------------------------------------------------------------------- /bin/recode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/recode -------------------------------------------------------------------------------- /bin/speedtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/speedtest -------------------------------------------------------------------------------- /bin/ssh-terminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/ssh-terminfo -------------------------------------------------------------------------------- /bin/switch-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/switch-project -------------------------------------------------------------------------------- /bin/switchphp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/switchphp -------------------------------------------------------------------------------- /bin/tabs2csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/tabs2csv -------------------------------------------------------------------------------- /bin/time-extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/time-extract -------------------------------------------------------------------------------- /bin/timetrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/timetrack -------------------------------------------------------------------------------- /bin/timetrack-dmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/timetrack-dmenu -------------------------------------------------------------------------------- /bin/toggle-xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/toggle-xdebug -------------------------------------------------------------------------------- /bin/vimb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/vimb.sh -------------------------------------------------------------------------------- /bin/warmup-by-sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/warmup-by-sitemap -------------------------------------------------------------------------------- /bin/yt2mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/bin/yt2mp3 -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/check.sh -------------------------------------------------------------------------------- /excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/excludes -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanglingsu/dotfiles/HEAD/install.sh --------------------------------------------------------------------------------