From a517c4b90f78f8b0c773152eb75502c738ccb1cd Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sun, 17 Jan 2016 09:55:22 -0600 Subject: [PATCH] README cleanup, install script cleanup * Remove bad links, unnecessary sections * add TODO for tmux section * move installosx.sh to install/osx.sh --- README.md | 11 ++++++----- install.sh | 2 +- installosx.sh => install/osx.sh | 0 3 files changed, 7 insertions(+), 6 deletions(-) rename installosx.sh => install/osx.sh (100%) diff --git a/README.md b/README.md index 76449d0..9ddfbcc 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,8 @@ Welcome to my world. This is a collection of vim, tmux, and zsh configurations. + [Initial Setup and Installation](#initial-setup-and-installation) + [ZSH Setup](#zsh-setup) + [Vim and Neovim Setup](#vim-and-neovim-setup) -+ [Tmux Configuration](#tmux-configuration) -+ [Git configuration](#git-configuration) -+ [OSX configuration](osx-configuration) -+ [Homebrew](#homebrew) -+ [Node Installation](#node-installation) ++ [Fonts](#fonts) ++ [Tmux](#tmux-configuration) ## Initial Setup and Installation @@ -99,3 +96,7 @@ nvim +PlugInstall I am currently using [Hack](http://sourcefoundry.org/hack/) as my default font, which does include Powerline support, so you don't need an additional patched font. In addition to this, I do have [nerd-fonts](https://github.com/ryanoasis/nerd-fonts) installed and configured to be used for non-ascii characters. If you would prefer not to do this, then simply remove the `Plug 'ryanoasis/vim-devicons'` plugin from vim/nvim. Then, I configure the fonts in this way in iTerm2: ![](http://nicknisi.com/share/iterm-fonts-config.png) + +## Tmux Configuration + +*TODO: Documentation coming soon.* diff --git a/install.sh b/install.sh index 968f3cf..93b7bc5 100755 --- a/install.sh +++ b/install.sh @@ -14,7 +14,7 @@ if [ "$(uname)" == "Darwin" ]; then source install/brew.sh echo "Updating OSX settings" - source installosx.sh + source install/installosx.sh echo "Installing node (from nvm)" source install/nvm.sh diff --git a/installosx.sh b/install/osx.sh similarity index 100% rename from installosx.sh rename to install/osx.sh