├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── Karabiner-Elements ├── karabiner.edn └── karabiner.json ├── Makefile ├── README.md ├── ack └── ackrc ├── atuin └── config.toml ├── babel.config.json ├── bash ├── bash_profile └── bashrc ├── dotjs ├── README.md ├── default.js ├── instapaper.com.js ├── jira.com.js └── news.ycombinator.com.js ├── eslint └── eslintrc.js ├── gh └── config.yml ├── git ├── git-churn ├── git-diff-churn ├── git-diff-review ├── git-diff-review-names ├── git-diff-review-stat ├── git-fuzzy-add ├── git-fuzzy-branch ├── git-fuzzy-checkout ├── git-fuzzy-files ├── git-fuzzy-hash ├── git-fuzzy-remote ├── git-fuzzy-stash ├── git-fuzzy-tag ├── git-review-summary ├── gitconfig.example ├── gitignore-global └── setup ├── gpg └── gpg-agent.conf ├── nvim ├── init.lua ├── lazy-lock.json ├── mason-lock.json └── neovim.md ├── package.json ├── python └── pythonrc ├── readline └── inputrc ├── ripgrep └── ripgreprc ├── tarsnap ├── README.md ├── acts.conf ├── com.thomasupton.tarsnap-acts.conf ├── com.thomasupton.tarsnap-acts.plist └── tarsnaprc ├── test-requirements.txt ├── tmux ├── install-tpm └── tmux.conf ├── vim ├── coc-settings.json ├── gvimrc ├── install-plugins ├── install-vim-plug ├── update-plugins └── vimrc ├── yarn.lock └── zsh ├── install-oh-my-zsh ├── update-oh-my-zsh ├── zshrc └── zshrc.d ├── aliases.zsh ├── atuin.zsh ├── completion.zsh ├── functions.zsh ├── fzf.zsh ├── git.zsh ├── iterm.zsh ├── keys.zsh ├── ls.zsh ├── mise.zsh ├── prompt.zsh ├── ripgrep.zsh └── zoxide.zsh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | eslint/eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | git/gitconfig 2 | node_modules 3 | -------------------------------------------------------------------------------- /Karabiner-Elements/karabiner.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/Karabiner-Elements/karabiner.edn -------------------------------------------------------------------------------- /Karabiner-Elements/karabiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/Karabiner-Elements/karabiner.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /ack/ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/ack/ackrc -------------------------------------------------------------------------------- /atuin/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/atuin/config.toml -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /bash/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/bash/bash_profile -------------------------------------------------------------------------------- /bash/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/bash/bashrc -------------------------------------------------------------------------------- /dotjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/dotjs/README.md -------------------------------------------------------------------------------- /dotjs/default.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dotjs/instapaper.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/dotjs/instapaper.com.js -------------------------------------------------------------------------------- /dotjs/jira.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/dotjs/jira.com.js -------------------------------------------------------------------------------- /dotjs/news.ycombinator.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/dotjs/news.ycombinator.com.js -------------------------------------------------------------------------------- /eslint/eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/eslint/eslintrc.js -------------------------------------------------------------------------------- /gh/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/gh/config.yml -------------------------------------------------------------------------------- /git/git-churn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-churn -------------------------------------------------------------------------------- /git/git-diff-churn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-diff-churn -------------------------------------------------------------------------------- /git/git-diff-review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-diff-review -------------------------------------------------------------------------------- /git/git-diff-review-names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-diff-review-names -------------------------------------------------------------------------------- /git/git-diff-review-stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-diff-review-stat -------------------------------------------------------------------------------- /git/git-fuzzy-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-add -------------------------------------------------------------------------------- /git/git-fuzzy-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-branch -------------------------------------------------------------------------------- /git/git-fuzzy-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-checkout -------------------------------------------------------------------------------- /git/git-fuzzy-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-files -------------------------------------------------------------------------------- /git/git-fuzzy-hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-hash -------------------------------------------------------------------------------- /git/git-fuzzy-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-remote -------------------------------------------------------------------------------- /git/git-fuzzy-stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-stash -------------------------------------------------------------------------------- /git/git-fuzzy-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-fuzzy-tag -------------------------------------------------------------------------------- /git/git-review-summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/git-review-summary -------------------------------------------------------------------------------- /git/gitconfig.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/gitconfig.example -------------------------------------------------------------------------------- /git/gitignore-global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/gitignore-global -------------------------------------------------------------------------------- /git/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/git/setup -------------------------------------------------------------------------------- /gpg/gpg-agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/gpg/gpg-agent.conf -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/mason-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/nvim/mason-lock.json -------------------------------------------------------------------------------- /nvim/neovim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/nvim/neovim.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/package.json -------------------------------------------------------------------------------- /python/pythonrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/python/pythonrc -------------------------------------------------------------------------------- /readline/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/readline/inputrc -------------------------------------------------------------------------------- /ripgrep/ripgreprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/ripgrep/ripgreprc -------------------------------------------------------------------------------- /tarsnap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tarsnap/README.md -------------------------------------------------------------------------------- /tarsnap/acts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tarsnap/acts.conf -------------------------------------------------------------------------------- /tarsnap/com.thomasupton.tarsnap-acts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tarsnap/com.thomasupton.tarsnap-acts.conf -------------------------------------------------------------------------------- /tarsnap/com.thomasupton.tarsnap-acts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tarsnap/com.thomasupton.tarsnap-acts.plist -------------------------------------------------------------------------------- /tarsnap/tarsnaprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tarsnap/tarsnaprc -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | vim-vint 2 | -------------------------------------------------------------------------------- /tmux/install-tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tmux/install-tpm -------------------------------------------------------------------------------- /tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/tmux/tmux.conf -------------------------------------------------------------------------------- /vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/vim/coc-settings.json -------------------------------------------------------------------------------- /vim/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/vim/gvimrc -------------------------------------------------------------------------------- /vim/install-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/vim/install-plugins -------------------------------------------------------------------------------- /vim/install-vim-plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/vim/install-vim-plug -------------------------------------------------------------------------------- /vim/update-plugins: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | vim -c "PlugUpdate" 4 | -------------------------------------------------------------------------------- /vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/vim/vimrc -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/yarn.lock -------------------------------------------------------------------------------- /zsh/install-oh-my-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/install-oh-my-zsh -------------------------------------------------------------------------------- /zsh/update-oh-my-zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/update-oh-my-zsh -------------------------------------------------------------------------------- /zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc -------------------------------------------------------------------------------- /zsh/zshrc.d/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/aliases.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/atuin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/atuin.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/completion.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/functions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/functions.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/fzf.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/fzf.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/git.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/iterm.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/iterm.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/keys.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/keys.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/ls.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/ls.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/mise.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/mise.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/prompt.zsh -------------------------------------------------------------------------------- /zsh/zshrc.d/ripgrep.zsh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | export RIPGREP_CONFIG_PATH="$HOME"/.ripgreprc 4 | -------------------------------------------------------------------------------- /zsh/zshrc.d/zoxide.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tupton/dotfiles/HEAD/zsh/zshrc.d/zoxide.zsh --------------------------------------------------------------------------------