Tony Grosinger
9b2268d4f8
Having a short timeoutlen was annoying with things like mini.surround where I sometimes think about which key needs to be pressed next. Instead, use the default timeoutlen, but shorten the amount of time until which-key opens. |
||
---|---|---|
.vim | ||
bin/linux | ||
nvim | ||
.bashrc | ||
.blerc | ||
.gitattributes | ||
.gitconfig | ||
.gitignore | ||
.gitmux.conf | ||
.inputrc | ||
.lazygit | ||
.tmux.conf | ||
.vimrc | ||
atuin.toml | ||
install.sh | ||
LICENSE | ||
README.md |
Tony's DotFiles
This is a collection of all the files that I want very easily available on any new machine that I sit down at. The install script is designed to be run either from the cloned repository or as a stand-alone script through curl. See the usage details for examples.
WARNING
The install script provided with these dotfiles is destructive and will overwrite files without asking. To ensure that you do not lose anything important please backup your .bashrc, .gitconfig, .gitignore, .inputrc, .tmux.conf, and .vimrc files in your home directory.
I can not be held responsible if you lose any important data.
Usage
Method 1
The first method requires cloning the repository and running the install script manually.
git clone ssh://git@git.grosinger.net:22322/tgrosinger/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./install.sh
Method 2
The second method does not require cloning the repository however it does require that Git and Curl is installed on the target machine.
\curl -sSL https://git.grosinger.net/tgrosinger/dotfiles/raw/branch/main/install.sh | bash