My linux configs
Go to file
2019-11-22 14:48:26 -08:00
.config Updates for neovim breaking changes 2015-10-26 14:48:52 -07:00
.i3 Remove workrave from startup and add sound control 2018-05-25 07:36:21 -07:00
.vim Update plug 2019-05-10 10:28:57 -07:00
bin Install bat 2019-05-14 11:31:06 -07:00
.bashrc Add utility function to convert a file to markdown 2019-10-18 08:40:08 -07:00
.gitconfig Add autosquash to gitconfig 2017-11-07 13:41:08 -08:00
.gitignore Updated with newest versions of all files 2013-03-04 20:59:34 -08:00
.i3status.conf Added a bunch of things 2015-05-26 13:06:01 -07:00
.inputrc Fix history search in inputrc 2019-05-10 14:11:55 -07:00
.spacemacs Spacemacs config improvements 2019-11-22 14:48:26 -08:00
.tmux.conf Fix for tmux 2018-08-09 09:55:54 -07:00
.vimrc Increase timeout for go metalinter in vim 2018-08-09 09:56:28 -07:00
.Xmodmap Added a bunch of things 2015-05-26 13:06:01 -07:00
install.sh Add spacemacs 2019-11-19 07:55:03 -08: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