My linux configs
Go to file
2021-11-08 11:04:08 -08:00
.vim Upgrade vim-plug 2020-12-29 15:14:29 -08:00
bin Remove delta 2021-07-29 14:13:19 -07:00
scripts Add branch-agnostic git aliases 2020-11-04 09:45:58 -08:00
.bashrc Update bashrc for HopCloud IC clusters 2021-11-08 11:04:08 -08:00
.gitattributes Add branch-agnostic git aliases 2020-11-04 09:45:58 -08:00
.gitconfig Remove delta 2021-07-29 14:13:19 -07:00
.gitignore More cleanup 2020-12-29 15:26:20 -08:00
.inputrc Fix history search in inputrc 2019-05-10 14:11:55 -07:00
.tmux.conf Simplify and update tmux keybindings and theme 2021-11-04 11:35:54 -07:00
.vimrc Remove unused vimrc config 2020-12-29 15:13:36 -08:00
install.sh Remove delta 2021-07-29 14:13:19 -07:00
LICENSE Added a license and small bug fix 2014-01-04 15:54:03 -08:00
README.md Updated README and another small bug fix 2014-01-04 16:08:11 -08:00

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 git@github.com: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://raw.github.com/tgrosinger/dotfiles/master/install.sh | bash