Last active
November 10, 2017 23:43
-
-
Save n8henrie/6e6e773a966a75862cc65b4e5dbb1a91 to your computer and use it in GitHub Desktop.
Set up basic Linux preferences and settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
echo '# Begin n8henrie settings' >> "${HOME}"/.inputrc | |
echo '" Begin n8henrie settings' >> "${HOME}"/.vimrc | |
echo '# Begin n8henrie settings' >> "${HOME}"/.bash_aliases | |
echo '# Begin n8henrie settings' >> "${HOME}"/.bashrc | |
curl 'https://gist.githubusercontent.com/n8henrie/c69de3e3c9d99668965473d1d315c855/raw' >> "${HOME}"/.inputrc | |
curl 'https://gist.githubusercontent.com/n8henrie/3e251bfe9ac9d5ce7421/raw' >> "${HOME}"/.vimrc | |
curl 'https://gist.githubusercontent.com/n8henrie/6cf7785d0ae025e706522e6e64c3fba2/raw' >> "${HOME}"/.bash_aliases | |
curl 'https://gist.githubusercontent.com/n8henrie/42f5e3be30f432e684ea8162e8a5fa60/raw' >> "${HOME}"/.bashrc | |
mkdir --parents "${HOME}"/.config/nvim/ | |
ln --symbolic "${HOME}"/.vimrc "${HOME}"/.config/nvim/init.vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment