├── .bash_logout ├── .bash_profile ├── .bashrc ├── .cargo └── config.toml ├── .config ├── bat │ └── config ├── concfg │ └── chawyehsu.json ├── conda │ └── .condarc ├── gem │ └── gemrc ├── gh │ ├── .gitignore │ └── config.yml ├── git │ ├── config │ ├── config.linux.conf │ ├── config.mac.conf │ ├── config.win.conf │ └── ignore ├── gnupg │ ├── gpg-agent.mac.conf │ ├── gpg-agent.win.conf │ └── gpg.conf ├── helix │ ├── config.toml │ └── themes │ │ └── chawyehsu.toml ├── htop │ └── htoprc ├── mintty │ └── config ├── nano │ ├── nanorc │ └── syntax │ │ ├── asm.nanorc │ │ ├── autoconf.nanorc │ │ ├── awk.nanorc │ │ ├── batch.nanorc │ │ ├── c.nanorc │ │ ├── changelog.nanorc │ │ ├── cmake.nanorc │ │ ├── css.nanorc │ │ ├── default.nanorc │ │ ├── editorconfig.nanorc │ │ ├── elisp.nanorc │ │ ├── email.nanorc │ │ ├── extra │ │ ├── ada.nanorc │ │ ├── fortran.nanorc │ │ ├── haskell.nanorc │ │ ├── povray.nanorc │ │ └── spec.nanorc │ │ ├── fsharp.nanorc │ │ ├── go.nanorc │ │ ├── groff.nanorc │ │ ├── guile.nanorc │ │ ├── html.nanorc │ │ ├── java.nanorc │ │ ├── javascript.nanorc │ │ ├── json.nanorc │ │ ├── lua.nanorc │ │ ├── makefile.nanorc │ │ ├── man.nanorc │ │ ├── markdown.nanorc │ │ ├── nanohelp.nanorc │ │ ├── nanorc.nanorc │ │ ├── nftables.nanorc │ │ ├── objc.nanorc │ │ ├── ocaml.nanorc │ │ ├── patch.nanorc │ │ ├── perl.nanorc │ │ ├── php.nanorc │ │ ├── po.nanorc │ │ ├── python.nanorc │ │ ├── ruby.nanorc │ │ ├── rust.nanorc │ │ ├── sh.nanorc │ │ ├── sql.nanorc │ │ ├── tcl.nanorc │ │ ├── tex.nanorc │ │ ├── texinfo.nanorc │ │ ├── toml.nanorc │ │ ├── typescript.nanorc │ │ ├── xml.nanorc │ │ └── yaml.nanorc ├── npm │ └── npmrc ├── nushell │ ├── .gitignore │ ├── config.nu │ └── env.nu ├── pip │ └── pip.ini ├── pixi │ └── config.toml ├── powershell │ └── profile.ps1 ├── proxychains │ └── proxychains.conf ├── pshazz │ ├── config.json │ └── themes │ │ └── chawyehsu.json ├── r │ ├── .rprofile │ └── Rconsole ├── readline │ └── inputrc ├── scoop │ └── config.json ├── screen │ └── screenrc ├── starship.toml ├── tmux │ └── tmux.conf ├── volta │ └── hooks.json ├── wget │ └── wgetrc ├── wsl │ ├── .wslconfig │ └── wsl.conf └── zed │ ├── .gitignore │ └── settings.json ├── .dir_colors ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gradle └── gradle.properties ├── .local └── bin │ ├── fw_sshd.ps1 │ ├── fwc.ps1 │ └── vsds.ps1 ├── .vscode ├── extensions.json └── settings.json ├── docs ├── logo.jpg ├── macos_iterm2.png ├── macos_iterm2_vim.png ├── spotlight.md ├── vim_movement_commands_cheatsheet.jpg ├── windows_cmder_powershell.png ├── windows_git_bash.png ├── windows_git_bash_vim.png ├── windows_gvim.png ├── windows_powershell.png ├── windows_xshell.png └── xdg_spec_compliance_status.txt ├── install.ps1 ├── license ├── readme.md ├── scoop └── persist │ ├── cmder │ └── config │ │ ├── .gitignore │ │ ├── Readme.md │ │ ├── settings │ │ ├── user-ConEmu.xml │ │ ├── user_aliases.cmd │ │ ├── user_profile.cmd │ │ └── user_profile.ps1 │ ├── phpstudy │ ├── nginx │ │ └── conf │ │ │ ├── nginx.conf │ │ │ └── vhost │ │ │ └── .gitkeep │ ├── tools │ │ └── phpStudy.ini │ └── www │ │ ├── favicon.ico │ │ ├── phpinfo.php │ │ └── robots.txt │ ├── volta │ └── appdata │ │ └── hooks.json │ └── windows-terminal │ └── settings │ └── settings.json └── scripts ├── include └── color.sh ├── initialize-scoop.ps1 ├── install-pipsi.sh ├── install-vim-plug.ps1 ├── install-vim-plug.sh ├── ipfs ├── install.sh └── ipfs.service ├── ish-bootstrap.sh ├── linux-install-bash-completion.sh └── linux └── install-pwsh.sh /.bash_logout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.bash_logout -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.config/bat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/bat/config -------------------------------------------------------------------------------- /.config/concfg/chawyehsu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/concfg/chawyehsu.json -------------------------------------------------------------------------------- /.config/conda/.condarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/conda/.condarc -------------------------------------------------------------------------------- /.config/gem/gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/gem/gemrc -------------------------------------------------------------------------------- /.config/gh/.gitignore: -------------------------------------------------------------------------------- 1 | hosts.yml 2 | -------------------------------------------------------------------------------- /.config/gh/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/gh/config.yml -------------------------------------------------------------------------------- /.config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/git/config -------------------------------------------------------------------------------- /.config/git/config.linux.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/git/config.mac.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/git/config.mac.conf -------------------------------------------------------------------------------- /.config/git/config.win.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/git/config.win.conf -------------------------------------------------------------------------------- /.config/git/ignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | .Thumbs.db 4 | -------------------------------------------------------------------------------- /.config/gnupg/gpg-agent.mac.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/gnupg/gpg-agent.mac.conf -------------------------------------------------------------------------------- /.config/gnupg/gpg-agent.win.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/gnupg/gpg-agent.win.conf -------------------------------------------------------------------------------- /.config/gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/gnupg/gpg.conf -------------------------------------------------------------------------------- /.config/helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/helix/config.toml -------------------------------------------------------------------------------- /.config/helix/themes/chawyehsu.toml: -------------------------------------------------------------------------------- 1 | inherits = "snazzy" 2 | "ui.background" = {} 3 | -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/mintty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/mintty/config -------------------------------------------------------------------------------- /.config/nano/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/asm.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/asm.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/autoconf.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/autoconf.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/awk.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/awk.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/batch.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/batch.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/c.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/c.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/changelog.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/changelog.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/cmake.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/cmake.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/css.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/css.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/default.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/default.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/editorconfig.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/editorconfig.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/elisp.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/elisp.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/email.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/email.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/extra/ada.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/extra/ada.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/extra/fortran.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/extra/fortran.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/extra/haskell.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/extra/haskell.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/extra/povray.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/extra/povray.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/extra/spec.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/extra/spec.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/fsharp.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/fsharp.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/go.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/go.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/groff.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/groff.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/guile.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/guile.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/html.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/html.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/java.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/java.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/javascript.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/javascript.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/json.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/json.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/lua.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/lua.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/makefile.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/makefile.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/man.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/man.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/markdown.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/markdown.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/nanohelp.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/nanohelp.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/nanorc.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/nanorc.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/nftables.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/nftables.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/objc.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/objc.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/ocaml.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/ocaml.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/patch.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/patch.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/perl.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/perl.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/php.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/php.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/po.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/po.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/python.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/python.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/ruby.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/ruby.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/rust.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/rust.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/sh.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/sh.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/sql.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/sql.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/tcl.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/tcl.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/tex.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/tex.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/texinfo.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/texinfo.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/toml.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/toml.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/typescript.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/typescript.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/xml.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/xml.nanorc -------------------------------------------------------------------------------- /.config/nano/syntax/yaml.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nano/syntax/yaml.nanorc -------------------------------------------------------------------------------- /.config/npm/npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/npm/npmrc -------------------------------------------------------------------------------- /.config/nushell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nushell/.gitignore -------------------------------------------------------------------------------- /.config/nushell/config.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nushell/config.nu -------------------------------------------------------------------------------- /.config/nushell/env.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/nushell/env.nu -------------------------------------------------------------------------------- /.config/pip/pip.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/pip/pip.ini -------------------------------------------------------------------------------- /.config/pixi/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/pixi/config.toml -------------------------------------------------------------------------------- /.config/powershell/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/powershell/profile.ps1 -------------------------------------------------------------------------------- /.config/proxychains/proxychains.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/proxychains/proxychains.conf -------------------------------------------------------------------------------- /.config/pshazz/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "chawyehsu" 3 | } 4 | -------------------------------------------------------------------------------- /.config/pshazz/themes/chawyehsu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/pshazz/themes/chawyehsu.json -------------------------------------------------------------------------------- /.config/r/.rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/r/.rprofile -------------------------------------------------------------------------------- /.config/r/Rconsole: -------------------------------------------------------------------------------- 1 | language = en 2 | -------------------------------------------------------------------------------- /.config/readline/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/readline/inputrc -------------------------------------------------------------------------------- /.config/scoop/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/scoop/config.json -------------------------------------------------------------------------------- /.config/screen/screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/screen/screenrc -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/volta/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/volta/hooks.json -------------------------------------------------------------------------------- /.config/wget/wgetrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/wget/wgetrc -------------------------------------------------------------------------------- /.config/wsl/.wslconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/wsl/.wslconfig -------------------------------------------------------------------------------- /.config/wsl/wsl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/wsl/wsl.conf -------------------------------------------------------------------------------- /.config/zed/.gitignore: -------------------------------------------------------------------------------- 1 | themes 2 | keymap.json 3 | -------------------------------------------------------------------------------- /.config/zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.config/zed/settings.json -------------------------------------------------------------------------------- /.dir_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.dir_colors -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gnupg/ 2 | .ssh/ 3 | .npmrc 4 | -------------------------------------------------------------------------------- /.gradle/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.gradle/gradle.properties -------------------------------------------------------------------------------- /.local/bin/fw_sshd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.local/bin/fw_sshd.ps1 -------------------------------------------------------------------------------- /.local/bin/fwc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.local/bin/fwc.ps1 -------------------------------------------------------------------------------- /.local/bin/vsds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.local/bin/vsds.ps1 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /docs/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/logo.jpg -------------------------------------------------------------------------------- /docs/macos_iterm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/macos_iterm2.png -------------------------------------------------------------------------------- /docs/macos_iterm2_vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/macos_iterm2_vim.png -------------------------------------------------------------------------------- /docs/spotlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/spotlight.md -------------------------------------------------------------------------------- /docs/vim_movement_commands_cheatsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/vim_movement_commands_cheatsheet.jpg -------------------------------------------------------------------------------- /docs/windows_cmder_powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_cmder_powershell.png -------------------------------------------------------------------------------- /docs/windows_git_bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_git_bash.png -------------------------------------------------------------------------------- /docs/windows_git_bash_vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_git_bash_vim.png -------------------------------------------------------------------------------- /docs/windows_gvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_gvim.png -------------------------------------------------------------------------------- /docs/windows_powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_powershell.png -------------------------------------------------------------------------------- /docs/windows_xshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/windows_xshell.png -------------------------------------------------------------------------------- /docs/xdg_spec_compliance_status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/docs/xdg_spec_compliance_status.txt -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/install.ps1 -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/readme.md -------------------------------------------------------------------------------- /scoop/persist/cmder/config/.gitignore: -------------------------------------------------------------------------------- 1 | .history 2 | -------------------------------------------------------------------------------- /scoop/persist/cmder/config/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/Readme.md -------------------------------------------------------------------------------- /scoop/persist/cmder/config/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/settings -------------------------------------------------------------------------------- /scoop/persist/cmder/config/user-ConEmu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/user-ConEmu.xml -------------------------------------------------------------------------------- /scoop/persist/cmder/config/user_aliases.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/user_aliases.cmd -------------------------------------------------------------------------------- /scoop/persist/cmder/config/user_profile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/user_profile.cmd -------------------------------------------------------------------------------- /scoop/persist/cmder/config/user_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/cmder/config/user_profile.ps1 -------------------------------------------------------------------------------- /scoop/persist/phpstudy/nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/phpstudy/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /scoop/persist/phpstudy/nginx/conf/vhost/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scoop/persist/phpstudy/tools/phpStudy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/phpstudy/tools/phpStudy.ini -------------------------------------------------------------------------------- /scoop/persist/phpstudy/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/phpstudy/www/favicon.ico -------------------------------------------------------------------------------- /scoop/persist/phpstudy/www/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scoop/persist/phpstudy/www/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /scoop/persist/volta/appdata/hooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/volta/appdata/hooks.json -------------------------------------------------------------------------------- /scoop/persist/windows-terminal/settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scoop/persist/windows-terminal/settings/settings.json -------------------------------------------------------------------------------- /scripts/include/color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/include/color.sh -------------------------------------------------------------------------------- /scripts/initialize-scoop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/initialize-scoop.ps1 -------------------------------------------------------------------------------- /scripts/install-pipsi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/install-pipsi.sh -------------------------------------------------------------------------------- /scripts/install-vim-plug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/install-vim-plug.ps1 -------------------------------------------------------------------------------- /scripts/install-vim-plug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/install-vim-plug.sh -------------------------------------------------------------------------------- /scripts/ipfs/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/ipfs/install.sh -------------------------------------------------------------------------------- /scripts/ipfs/ipfs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/ipfs/ipfs.service -------------------------------------------------------------------------------- /scripts/ish-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/ish-bootstrap.sh -------------------------------------------------------------------------------- /scripts/linux-install-bash-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/linux-install-bash-completion.sh -------------------------------------------------------------------------------- /scripts/linux/install-pwsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chawyehsu/dotfiles/HEAD/scripts/linux/install-pwsh.sh --------------------------------------------------------------------------------