├── .aliases ├── .bash_aliases ├── .bash_functions ├── .bashrc ├── .config ├── cheat │ └── conf.yml ├── freeze │ └── user.json ├── kitty │ └── kitty.conf └── lazygit │ └── config.yml ├── .editorconfig ├── .gitignore ├── .tmux.conf ├── .vimrc ├── Brewfile ├── README.md └── bin ├── ai ├── cheatsheets ├── evictedPods.sh ├── get-dotfiles ├── gitignore.io ├── post-install.sh ├── tat ├── urldecode └── urlencode /.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.aliases -------------------------------------------------------------------------------- /.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.bash_aliases -------------------------------------------------------------------------------- /.bash_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.bash_functions -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.config/cheat/conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.config/cheat/conf.yml -------------------------------------------------------------------------------- /.config/freeze/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.config/freeze/user.json -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/lazygit/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.config/lazygit/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/Brewfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/ai -------------------------------------------------------------------------------- /bin/cheatsheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/cheatsheets -------------------------------------------------------------------------------- /bin/evictedPods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/evictedPods.sh -------------------------------------------------------------------------------- /bin/get-dotfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/get-dotfiles -------------------------------------------------------------------------------- /bin/gitignore.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/gitignore.io -------------------------------------------------------------------------------- /bin/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/post-install.sh -------------------------------------------------------------------------------- /bin/tat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/tat -------------------------------------------------------------------------------- /bin/urldecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/urldecode -------------------------------------------------------------------------------- /bin/urlencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meleu/.dotfiles/HEAD/bin/urlencode --------------------------------------------------------------------------------