From ae69241f735c126adc5321b239d93248dfa486a1 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 17 Jun 2015 18:49:23 -0700 Subject: [PATCH] Modify dotfiles --- dotfiles/vimrc | 2 +- dotfiles/zshrc | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dotfiles/vimrc b/dotfiles/vimrc index e04070d..56e83de 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -101,7 +101,7 @@ set tabstop=2 " spaces entered when tab key is pressed set shiftwidth=2 " spaces entered for indentation set number " Line numbering set backspace=indent,eol,start " Make backspacing work right -set clipboard=unnamed " Share system clipboard +set clipboard=unnamedplus " Share system clipboard set eol " End of line at bottom of file set shiftround set hlsearch " Highlight matches in search diff --git a/dotfiles/zshrc b/dotfiles/zshrc index cd925c3..789604f 100644 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -33,6 +33,11 @@ export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting . ~/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true +# Haskell stuff +PATH=$PATH:~/.cabal/bin +PATH=$PATH:.cabal-sandbox/bin + + # Set up colors autoload -U colors && colors