├── .bash_profile ├── .bashrc ├── .config ├── atuin │ └── config.toml ├── bash │ ├── .bashrc │ ├── conf.d │ │ ├── aliases.sh │ │ └── functions.sh │ ├── plugins │ │ ├── __init__.sh │ │ ├── atuin.sh │ │ ├── azure.sh │ │ ├── ble.sh │ │ ├── colors.sh │ │ ├── completions.sh │ │ ├── confd.sh │ │ ├── directory.sh │ │ ├── direnv.sh │ │ ├── dotfiles.sh │ │ ├── dotnet.sh │ │ ├── editor.sh │ │ ├── environment.sh │ │ ├── fzf.sh │ │ ├── gam.sh │ │ ├── git.sh │ │ ├── gitignore.sh │ │ ├── gpg.sh │ │ ├── history-substring-search.sh │ │ ├── history.sh │ │ ├── homebrew.sh │ │ ├── iwd.sh │ │ ├── jupyter.sh │ │ ├── macos.sh │ │ ├── magic-enter.sh │ │ ├── nim.sh │ │ ├── perl.sh │ │ ├── prompt.sh │ │ ├── python.sh │ │ ├── repos.sh │ │ ├── utils.sh │ │ ├── wezterm.sh │ │ ├── xdg.sh │ │ ├── zoxide.sh │ │ └── zzz.sh │ ├── readme.md │ ├── repos.txt │ └── themes │ │ └── bash.toml ├── blesh │ └── init.sh ├── git │ ├── config │ └── gitignore ├── helix │ └── config.toml ├── homebrew │ └── init.brewfile ├── kak │ ├── kakrc │ └── plugins │ │ └── example.lua ├── npm │ └── npmrc ├── nvim │ ├── .gitignore │ ├── .stylua.toml │ ├── LICENSE.md │ ├── README.md │ ├── doc │ │ └── kickstart.txt │ ├── init.lua │ ├── lazy-lock.json │ └── lua │ │ ├── custom │ │ └── plugins │ │ │ └── init.lua │ │ └── kickstart │ │ ├── health.lua │ │ └── plugins │ │ ├── autopairs.lua │ │ ├── debug.lua │ │ ├── gitsigns.lua │ │ ├── indent_line.lua │ │ ├── lint.lua │ │ └── neo-tree.lua ├── pep8 ├── pycodestyle ├── readline │ └── inputrc ├── starship │ ├── bash.toml │ ├── fish.toml │ ├── hydro.toml │ ├── mmc.toml │ ├── mmc_256.toml │ ├── omf.toml │ ├── powershell.toml │ ├── prezto.toml │ ├── pure.toml │ ├── starship.toml │ ├── xonsh.toml │ ├── zebrafish.toml │ └── zsh.toml ├── tmux │ └── tmux.conf ├── vim │ ├── init.vim │ └── kickstart.vim ├── wezterm │ ├── README.md │ ├── backgrounds │ │ ├── botw_corrupted_nydra.jpg │ │ ├── botw_corrupted_nydra2.png │ │ ├── botw_corrupted_nydra_dark.png │ │ └── botw_corrupted_nydra_rev.jpg │ └── wezterm.lua └── zsh │ ├── .p10k.zsh │ ├── .zshenv │ ├── .zshrc │ └── conf.d │ ├── git-clone-with-cd.zsh │ ├── history.zsh │ ├── myaliases.zsh │ └── myfuncs.zsh ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .hammerspoon ├── Spoons │ └── .gitkeep ├── init.lua └── readme.md ├── .stow-local-ignore ├── .vimrc ├── .zshenv ├── LICENSE ├── README.md ├── bin ├── antidote1 ├── backup ├── backup.rsync ├── capsmap ├── code ├── color-spaces.pl ├── colorschemes ├── colortrans ├── context_demo.zsh ├── csv2tsv ├── dispatch ├── em ├── fishy │ ├── .bcrc │ ├── .bcrc2 │ ├── .editorconfig │ ├── argparse.lua │ ├── contains │ ├── contains.lua │ ├── contains.pl │ ├── count │ ├── count.pl │ ├── math │ ├── math.lua │ ├── random.lua │ ├── string │ ├── string-join │ ├── string-join0 │ ├── string-length │ ├── string-lower │ ├── string-match │ ├── string-repeat │ ├── string-transform │ ├── string-upper │ ├── string.lua │ ├── string.pl │ ├── t │ │ └── string.t │ └── test.lua ├── fix-bom ├── gam-install.sh ├── gen ├── gen.d │ └── xlcols ├── git │ ├── git-branch-cleanup │ ├── git-cloner │ ├── git-pushup │ └── git-submodule-up ├── gitex ├── hello.zsh ├── hex2rgb ├── linkify ├── macopts.zsh ├── new_mac_config ├── new_mac_secrets ├── new_mac_setup ├── otp ├── palette ├── pathr ├── pkgmgr ├── pocket2ffbookmarks ├── pocketdownload ├── prj ├── reference │ ├── emacs-plus.sh │ └── git-fix-email.sh ├── repo ├── shell-safe-rm ├── str ├── str.d │ ├── lower │ ├── match │ ├── match.lua │ └── upper ├── str.py ├── string ├── subl_wait.sh ├── trash ├── upallthethings └── whichos ├── docs ├── emacs.md ├── git.md ├── macos-config.md ├── macos.md ├── readme.md ├── taskpaper.md ├── vim.md ├── xdg.md └── zsh │ ├── completions.md │ ├── readme.md │ ├── zdotdir.md │ ├── zsh-cheatsheet.md │ ├── zsh-optparse.md │ ├── zsh-setopts.md │ ├── zsh-string.md │ └── zsh.md └── makefile /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.config/atuin/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/atuin/config.toml -------------------------------------------------------------------------------- /.config/bash/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/.bashrc -------------------------------------------------------------------------------- /.config/bash/conf.d/aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/conf.d/aliases.sh -------------------------------------------------------------------------------- /.config/bash/conf.d/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/conf.d/functions.sh -------------------------------------------------------------------------------- /.config/bash/plugins/__init__.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/__init__.sh -------------------------------------------------------------------------------- /.config/bash/plugins/atuin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/atuin.sh -------------------------------------------------------------------------------- /.config/bash/plugins/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/azure.sh -------------------------------------------------------------------------------- /.config/bash/plugins/ble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/ble.sh -------------------------------------------------------------------------------- /.config/bash/plugins/colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/colors.sh -------------------------------------------------------------------------------- /.config/bash/plugins/completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/completions.sh -------------------------------------------------------------------------------- /.config/bash/plugins/confd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/confd.sh -------------------------------------------------------------------------------- /.config/bash/plugins/directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/directory.sh -------------------------------------------------------------------------------- /.config/bash/plugins/direnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/direnv.sh -------------------------------------------------------------------------------- /.config/bash/plugins/dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/dotfiles.sh -------------------------------------------------------------------------------- /.config/bash/plugins/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/dotnet.sh -------------------------------------------------------------------------------- /.config/bash/plugins/editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/editor.sh -------------------------------------------------------------------------------- /.config/bash/plugins/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/environment.sh -------------------------------------------------------------------------------- /.config/bash/plugins/fzf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/fzf.sh -------------------------------------------------------------------------------- /.config/bash/plugins/gam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/gam.sh -------------------------------------------------------------------------------- /.config/bash/plugins/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/git.sh -------------------------------------------------------------------------------- /.config/bash/plugins/gitignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/gitignore.sh -------------------------------------------------------------------------------- /.config/bash/plugins/gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/gpg.sh -------------------------------------------------------------------------------- /.config/bash/plugins/history-substring-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/history-substring-search.sh -------------------------------------------------------------------------------- /.config/bash/plugins/history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/history.sh -------------------------------------------------------------------------------- /.config/bash/plugins/homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/homebrew.sh -------------------------------------------------------------------------------- /.config/bash/plugins/iwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/iwd.sh -------------------------------------------------------------------------------- /.config/bash/plugins/jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/jupyter.sh -------------------------------------------------------------------------------- /.config/bash/plugins/macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/macos.sh -------------------------------------------------------------------------------- /.config/bash/plugins/magic-enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/magic-enter.sh -------------------------------------------------------------------------------- /.config/bash/plugins/nim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/nim.sh -------------------------------------------------------------------------------- /.config/bash/plugins/perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/perl.sh -------------------------------------------------------------------------------- /.config/bash/plugins/prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/prompt.sh -------------------------------------------------------------------------------- /.config/bash/plugins/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/python.sh -------------------------------------------------------------------------------- /.config/bash/plugins/repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/repos.sh -------------------------------------------------------------------------------- /.config/bash/plugins/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/utils.sh -------------------------------------------------------------------------------- /.config/bash/plugins/wezterm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/wezterm.sh -------------------------------------------------------------------------------- /.config/bash/plugins/xdg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/xdg.sh -------------------------------------------------------------------------------- /.config/bash/plugins/zoxide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/zoxide.sh -------------------------------------------------------------------------------- /.config/bash/plugins/zzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/plugins/zzz.sh -------------------------------------------------------------------------------- /.config/bash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/readme.md -------------------------------------------------------------------------------- /.config/bash/repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/repos.txt -------------------------------------------------------------------------------- /.config/bash/themes/bash.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/bash/themes/bash.toml -------------------------------------------------------------------------------- /.config/blesh/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/blesh/init.sh -------------------------------------------------------------------------------- /.config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/git/config -------------------------------------------------------------------------------- /.config/git/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/git/gitignore -------------------------------------------------------------------------------- /.config/helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/helix/config.toml -------------------------------------------------------------------------------- /.config/homebrew/init.brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/homebrew/init.brewfile -------------------------------------------------------------------------------- /.config/kak/kakrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/kak/kakrc -------------------------------------------------------------------------------- /.config/kak/plugins/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/kak/plugins/example.lua -------------------------------------------------------------------------------- /.config/npm/npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/npm/npmrc -------------------------------------------------------------------------------- /.config/nvim/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | test.sh 3 | .luarc.json 4 | nvim 5 | 6 | spell/ 7 | -------------------------------------------------------------------------------- /.config/nvim/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/.stylua.toml -------------------------------------------------------------------------------- /.config/nvim/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/LICENSE.md -------------------------------------------------------------------------------- /.config/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/README.md -------------------------------------------------------------------------------- /.config/nvim/doc/kickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/doc/kickstart.txt -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lazy-lock.json -------------------------------------------------------------------------------- /.config/nvim/lua/custom/plugins/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/custom/plugins/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/health.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/autopairs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/autopairs.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/debug.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/gitsigns.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/indent_line.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/indent_line.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/lint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/lint.lua -------------------------------------------------------------------------------- /.config/nvim/lua/kickstart/plugins/neo-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/nvim/lua/kickstart/plugins/neo-tree.lua -------------------------------------------------------------------------------- /.config/pep8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/pep8 -------------------------------------------------------------------------------- /.config/pycodestyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/pycodestyle -------------------------------------------------------------------------------- /.config/readline/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/readline/inputrc -------------------------------------------------------------------------------- /.config/starship/bash.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/bash.toml -------------------------------------------------------------------------------- /.config/starship/fish.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/fish.toml -------------------------------------------------------------------------------- /.config/starship/hydro.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/hydro.toml -------------------------------------------------------------------------------- /.config/starship/mmc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/mmc.toml -------------------------------------------------------------------------------- /.config/starship/mmc_256.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/mmc_256.toml -------------------------------------------------------------------------------- /.config/starship/omf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/omf.toml -------------------------------------------------------------------------------- /.config/starship/powershell.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/powershell.toml -------------------------------------------------------------------------------- /.config/starship/prezto.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/prezto.toml -------------------------------------------------------------------------------- /.config/starship/pure.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/pure.toml -------------------------------------------------------------------------------- /.config/starship/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/starship.toml -------------------------------------------------------------------------------- /.config/starship/xonsh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/xonsh.toml -------------------------------------------------------------------------------- /.config/starship/zebrafish.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/zebrafish.toml -------------------------------------------------------------------------------- /.config/starship/zsh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/starship/zsh.toml -------------------------------------------------------------------------------- /.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /.config/vim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/vim/init.vim -------------------------------------------------------------------------------- /.config/vim/kickstart.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/vim/kickstart.vim -------------------------------------------------------------------------------- /.config/wezterm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/README.md -------------------------------------------------------------------------------- /.config/wezterm/backgrounds/botw_corrupted_nydra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/backgrounds/botw_corrupted_nydra.jpg -------------------------------------------------------------------------------- /.config/wezterm/backgrounds/botw_corrupted_nydra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/backgrounds/botw_corrupted_nydra2.png -------------------------------------------------------------------------------- /.config/wezterm/backgrounds/botw_corrupted_nydra_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/backgrounds/botw_corrupted_nydra_dark.png -------------------------------------------------------------------------------- /.config/wezterm/backgrounds/botw_corrupted_nydra_rev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/backgrounds/botw_corrupted_nydra_rev.jpg -------------------------------------------------------------------------------- /.config/wezterm/wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/wezterm/wezterm.lua -------------------------------------------------------------------------------- /.config/zsh/.p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/.p10k.zsh -------------------------------------------------------------------------------- /.config/zsh/.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/.zshenv -------------------------------------------------------------------------------- /.config/zsh/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/.zshrc -------------------------------------------------------------------------------- /.config/zsh/conf.d/git-clone-with-cd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/conf.d/git-clone-with-cd.zsh -------------------------------------------------------------------------------- /.config/zsh/conf.d/history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/conf.d/history.zsh -------------------------------------------------------------------------------- /.config/zsh/conf.d/myaliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/conf.d/myaliases.zsh -------------------------------------------------------------------------------- /.config/zsh/conf.d/myfuncs.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.config/zsh/conf.d/myfuncs.zsh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hammerspoon/Spoons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.hammerspoon/init.lua -------------------------------------------------------------------------------- /.hammerspoon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.hammerspoon/readme.md -------------------------------------------------------------------------------- /.stow-local-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.stow-local-ignore -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- 1 | .config/vim/init.vim -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/antidote1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/antidote1 -------------------------------------------------------------------------------- /bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/backup -------------------------------------------------------------------------------- /bin/backup.rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/backup.rsync -------------------------------------------------------------------------------- /bin/capsmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/capsmap -------------------------------------------------------------------------------- /bin/code: -------------------------------------------------------------------------------- 1 | /Applications/Visual Studio Code.app/Contents/Resources/app/bin/code -------------------------------------------------------------------------------- /bin/color-spaces.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/color-spaces.pl -------------------------------------------------------------------------------- /bin/colorschemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/colorschemes -------------------------------------------------------------------------------- /bin/colortrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/colortrans -------------------------------------------------------------------------------- /bin/context_demo.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/context_demo.zsh -------------------------------------------------------------------------------- /bin/csv2tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/csv2tsv -------------------------------------------------------------------------------- /bin/dispatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/dispatch -------------------------------------------------------------------------------- /bin/em: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/em -------------------------------------------------------------------------------- /bin/fishy/.bcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/.bcrc -------------------------------------------------------------------------------- /bin/fishy/.bcrc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/.bcrc2 -------------------------------------------------------------------------------- /bin/fishy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/.editorconfig -------------------------------------------------------------------------------- /bin/fishy/argparse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/argparse.lua -------------------------------------------------------------------------------- /bin/fishy/contains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/contains -------------------------------------------------------------------------------- /bin/fishy/contains.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/contains.lua -------------------------------------------------------------------------------- /bin/fishy/contains.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/contains.pl -------------------------------------------------------------------------------- /bin/fishy/count: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/count -------------------------------------------------------------------------------- /bin/fishy/count.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/count.pl -------------------------------------------------------------------------------- /bin/fishy/math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/math -------------------------------------------------------------------------------- /bin/fishy/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/math.lua -------------------------------------------------------------------------------- /bin/fishy/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/random.lua -------------------------------------------------------------------------------- /bin/fishy/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string -------------------------------------------------------------------------------- /bin/fishy/string-join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-join -------------------------------------------------------------------------------- /bin/fishy/string-join0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-join0 -------------------------------------------------------------------------------- /bin/fishy/string-length: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-length -------------------------------------------------------------------------------- /bin/fishy/string-lower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-lower -------------------------------------------------------------------------------- /bin/fishy/string-match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-match -------------------------------------------------------------------------------- /bin/fishy/string-repeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-repeat -------------------------------------------------------------------------------- /bin/fishy/string-transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-transform -------------------------------------------------------------------------------- /bin/fishy/string-upper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string-upper -------------------------------------------------------------------------------- /bin/fishy/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string.lua -------------------------------------------------------------------------------- /bin/fishy/string.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/string.pl -------------------------------------------------------------------------------- /bin/fishy/t/string.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/t/string.t -------------------------------------------------------------------------------- /bin/fishy/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fishy/test.lua -------------------------------------------------------------------------------- /bin/fix-bom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/fix-bom -------------------------------------------------------------------------------- /bin/gam-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/gam-install.sh -------------------------------------------------------------------------------- /bin/gen: -------------------------------------------------------------------------------- 1 | ./dispatch -------------------------------------------------------------------------------- /bin/gen.d/xlcols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/gen.d/xlcols -------------------------------------------------------------------------------- /bin/git/git-branch-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/git/git-branch-cleanup -------------------------------------------------------------------------------- /bin/git/git-cloner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/git/git-cloner -------------------------------------------------------------------------------- /bin/git/git-pushup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/git/git-pushup -------------------------------------------------------------------------------- /bin/git/git-submodule-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/git/git-submodule-up -------------------------------------------------------------------------------- /bin/gitex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/gitex -------------------------------------------------------------------------------- /bin/hello.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/hello.zsh -------------------------------------------------------------------------------- /bin/hex2rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/hex2rgb -------------------------------------------------------------------------------- /bin/linkify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/linkify -------------------------------------------------------------------------------- /bin/macopts.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/macopts.zsh -------------------------------------------------------------------------------- /bin/new_mac_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/new_mac_config -------------------------------------------------------------------------------- /bin/new_mac_secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/new_mac_secrets -------------------------------------------------------------------------------- /bin/new_mac_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/new_mac_setup -------------------------------------------------------------------------------- /bin/otp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/otp -------------------------------------------------------------------------------- /bin/palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/palette -------------------------------------------------------------------------------- /bin/pathr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/pathr -------------------------------------------------------------------------------- /bin/pkgmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/pkgmgr -------------------------------------------------------------------------------- /bin/pocket2ffbookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/pocket2ffbookmarks -------------------------------------------------------------------------------- /bin/pocketdownload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/pocketdownload -------------------------------------------------------------------------------- /bin/prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/prj -------------------------------------------------------------------------------- /bin/reference/emacs-plus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/reference/emacs-plus.sh -------------------------------------------------------------------------------- /bin/reference/git-fix-email.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/reference/git-fix-email.sh -------------------------------------------------------------------------------- /bin/repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/repo -------------------------------------------------------------------------------- /bin/shell-safe-rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/shell-safe-rm -------------------------------------------------------------------------------- /bin/str: -------------------------------------------------------------------------------- 1 | ./dispatch -------------------------------------------------------------------------------- /bin/str.d/lower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/str.d/lower -------------------------------------------------------------------------------- /bin/str.d/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/str.d/match -------------------------------------------------------------------------------- /bin/str.d/match.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/str.d/match.lua -------------------------------------------------------------------------------- /bin/str.d/upper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/str.d/upper -------------------------------------------------------------------------------- /bin/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/str.py -------------------------------------------------------------------------------- /bin/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/string -------------------------------------------------------------------------------- /bin/subl_wait.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/subl_wait.sh -------------------------------------------------------------------------------- /bin/trash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/trash -------------------------------------------------------------------------------- /bin/upallthethings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/upallthethings -------------------------------------------------------------------------------- /bin/whichos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/bin/whichos -------------------------------------------------------------------------------- /docs/emacs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/emacs.md -------------------------------------------------------------------------------- /docs/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/git.md -------------------------------------------------------------------------------- /docs/macos-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/macos-config.md -------------------------------------------------------------------------------- /docs/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/macos.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/taskpaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/taskpaper.md -------------------------------------------------------------------------------- /docs/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/vim.md -------------------------------------------------------------------------------- /docs/xdg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/xdg.md -------------------------------------------------------------------------------- /docs/zsh/completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/completions.md -------------------------------------------------------------------------------- /docs/zsh/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/readme.md -------------------------------------------------------------------------------- /docs/zsh/zdotdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zdotdir.md -------------------------------------------------------------------------------- /docs/zsh/zsh-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zsh-cheatsheet.md -------------------------------------------------------------------------------- /docs/zsh/zsh-optparse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zsh-optparse.md -------------------------------------------------------------------------------- /docs/zsh/zsh-setopts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zsh-setopts.md -------------------------------------------------------------------------------- /docs/zsh/zsh-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zsh-string.md -------------------------------------------------------------------------------- /docs/zsh/zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/docs/zsh/zsh.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmc3/dotfiles/HEAD/makefile --------------------------------------------------------------------------------