Skip to content

Instantly share code, notes, and snippets.

@n8henrie
Last active November 10, 2017 23:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n8henrie/6e6e773a966a75862cc65b4e5dbb1a91 to your computer and use it in GitHub Desktop.
Save n8henrie/6e6e773a966a75862cc65b4e5dbb1a91 to your computer and use it in GitHub Desktop.
Set up basic Linux preferences and settings
#! /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