├── .Xdefaults ├── .ackrc ├── .aider.conf.yml ├── .bash_profile ├── .config └── ghostty │ └── config ├── .curl-format ├── .curlrc ├── .dockerignore ├── .gitconfig.base ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .hgrc ├── .irbrc ├── .nethackrc ├── .psqlrc ├── .screenrc ├── .tigrc ├── .tmux.conf ├── .toprc ├── .vim ├── .gitignore ├── README.md ├── after │ └── syntax │ │ └── html.vim ├── chars ├── gvimrc ├── syntax │ ├── kwiki.vim │ ├── notesfile.vim │ ├── organized.vim │ ├── robotalk.vim │ ├── spork.vim │ └── stylefile.vim ├── update.sh └── vimrc ├── .vscode-linux.keybindings.json ├── .vscode-linux.settings.json ├── .vscode-mac.keybindings.json ├── .vscode-mac.settings.json ├── .vscode-snippets ├── gdscript.json ├── javascript.json ├── typescript.json └── typescriptreact.json ├── .zsh_plugins └── fzf-git.sh ├── .zshrc ├── DefaultKeyBinding.dict ├── Dockerfile ├── README.md ├── bin ├── 256-colors ├── ack ├── ansimodes ├── gifenc ├── github-open ├── hr ├── imgcat ├── imgls ├── matrixify ├── md2ansi ├── pipes ├── pymkdir ├── rename ├── slurp ├── super-sync ├── tcolor └── twinkle ├── homebrew.txt └── install.zsh /.Xdefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.Xdefaults -------------------------------------------------------------------------------- /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.ackrc -------------------------------------------------------------------------------- /.aider.conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.aider.conf.yml -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.bash_profile -------------------------------------------------------------------------------- /.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.config/ghostty/config -------------------------------------------------------------------------------- /.curl-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.curl-format -------------------------------------------------------------------------------- /.curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.curlrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitconfig.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.gitconfig.base -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.hgrc -------------------------------------------------------------------------------- /.irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.irbrc -------------------------------------------------------------------------------- /.nethackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.nethackrc -------------------------------------------------------------------------------- /.psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.psqlrc -------------------------------------------------------------------------------- /.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.screenrc -------------------------------------------------------------------------------- /.tigrc: -------------------------------------------------------------------------------- 1 | set vertical-split = no 2 | -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.toprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.toprc -------------------------------------------------------------------------------- /.vim/.gitignore: -------------------------------------------------------------------------------- 1 | bundle 2 | spell 3 | .VimballRecord 4 | .netrwhist 5 | -------------------------------------------------------------------------------- /.vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/README.md -------------------------------------------------------------------------------- /.vim/after/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/after/syntax/html.vim -------------------------------------------------------------------------------- /.vim/chars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/chars -------------------------------------------------------------------------------- /.vim/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/gvimrc -------------------------------------------------------------------------------- /.vim/syntax/kwiki.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/kwiki.vim -------------------------------------------------------------------------------- /.vim/syntax/notesfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/notesfile.vim -------------------------------------------------------------------------------- /.vim/syntax/organized.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/organized.vim -------------------------------------------------------------------------------- /.vim/syntax/robotalk.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/robotalk.vim -------------------------------------------------------------------------------- /.vim/syntax/spork.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/spork.vim -------------------------------------------------------------------------------- /.vim/syntax/stylefile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/syntax/stylefile.vim -------------------------------------------------------------------------------- /.vim/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/update.sh -------------------------------------------------------------------------------- /.vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vim/vimrc -------------------------------------------------------------------------------- /.vscode-linux.keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-linux.keybindings.json -------------------------------------------------------------------------------- /.vscode-linux.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-linux.settings.json -------------------------------------------------------------------------------- /.vscode-mac.keybindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-mac.keybindings.json -------------------------------------------------------------------------------- /.vscode-mac.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-mac.settings.json -------------------------------------------------------------------------------- /.vscode-snippets/gdscript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-snippets/gdscript.json -------------------------------------------------------------------------------- /.vscode-snippets/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-snippets/javascript.json -------------------------------------------------------------------------------- /.vscode-snippets/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-snippets/typescript.json -------------------------------------------------------------------------------- /.vscode-snippets/typescriptreact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.vscode-snippets/typescriptreact.json -------------------------------------------------------------------------------- /.zsh_plugins/fzf-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.zsh_plugins/fzf-git.sh -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /DefaultKeyBinding.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/DefaultKeyBinding.dict -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/256-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/256-colors -------------------------------------------------------------------------------- /bin/ack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/ack -------------------------------------------------------------------------------- /bin/ansimodes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/ansimodes -------------------------------------------------------------------------------- /bin/gifenc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/gifenc -------------------------------------------------------------------------------- /bin/github-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/github-open -------------------------------------------------------------------------------- /bin/hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/hr -------------------------------------------------------------------------------- /bin/imgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/imgcat -------------------------------------------------------------------------------- /bin/imgls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/imgls -------------------------------------------------------------------------------- /bin/matrixify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/matrixify -------------------------------------------------------------------------------- /bin/md2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/md2ansi -------------------------------------------------------------------------------- /bin/pipes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/pipes -------------------------------------------------------------------------------- /bin/pymkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/pymkdir -------------------------------------------------------------------------------- /bin/rename: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/rename -------------------------------------------------------------------------------- /bin/slurp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/slurp -------------------------------------------------------------------------------- /bin/super-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/super-sync -------------------------------------------------------------------------------- /bin/tcolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/tcolor -------------------------------------------------------------------------------- /bin/twinkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/bin/twinkle -------------------------------------------------------------------------------- /homebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/homebrew.txt -------------------------------------------------------------------------------- /install.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statico/dotfiles/HEAD/install.zsh --------------------------------------------------------------------------------