/dotfiles

Primary LanguageVim Script

DOTFILES

INSTALATION

  1. Run ./setup-a-new-machine.sh with sudo to install all things.
  2. Run ./sync.sh script to create symlinks and backup old files.
  3. Set Solarized theme as default in Terminal Preferences.
  4. Install tmux plugins prefix + I
  5. Install vim plugins vim +PluginInstall.

VIM/TMUX

TMUX

If vim doesn't display correct colors run $ screen_terminfo="screen-256color"

VUNDLE

Vundle's .vimrc config produces the following error when editing GIT Messages:

$ git commit
error: There was a problem with the editor 'vi'.
Solution

Setting your GIT editor to vim (instead of vi):

git config --global core.editor $(which vim)

Upgrading your version of vim(done on running setup-a-new-machine.sh):

brew install vim --override-system-vi

Issue on github: VundleVim/Vundle.vim#167

NPM

Possible issues with npm.

Possible solution: https://gist.github.com/DanHerbert/9520689