added ghc_home, cabal_home flags, branch config in git, sidharta->veitheller
This commit is contained in:
Submodule .vim/bundle/ctrlp.vim updated: b5d3fe66a5...564176f01d
Submodule .vim/bundle/ghcmod-vim updated: 7e5f6102aa...1cab59653e
Submodule .vim/bundle/haskell-vim updated: 890395d5f5...72900a16f7
Submodule .vim/bundle/neco-ghc updated: 7d2c360736...53a3d63bc4
Submodule .vim/bundle/nerdtree updated: 3b98a7fcae...4ebbb533c3
Submodule .vim/bundle/supertab updated: c8bfeceb1f...9f7da6d498
Submodule .vim/bundle/syntastic updated: e1217a888a...281b29487f
Submodule .vim/bundle/tagbar updated: c6b473f559...7b36c46d17
Submodule .vim/bundle/tslime.vim updated: 71ec1cbe8f...4a8091956e
Submodule .vim/bundle/vim-airline updated: f45ecdac15...14d14cf951
Submodule .vim/bundle/vim-commentary updated: 9c685131a5...e0f4850d78
Submodule .vim/bundle/vim-extradite updated: a1dc4b63be...52326f6d33
Submodule .vim/bundle/vim-fugitive updated: 4cc201cbe3...8851b8fe64
Submodule .vim/bundle/vim-haskellConcealPlus updated: 9c12f6d816...fdd4e15800
Submodule .vim/bundle/vim-indent-guides updated: 184e55848d...49bde6fa30
Submodule .vim/bundle/vim-indent-object updated: 78fffa609b...1d3e4aac01
Submodule .vim/bundle/vim-jade updated: fb47bb8303...f760e23938
Submodule .vim/bundle/vim-tmux-navigator updated: 928a52fbda...1298b71c42
Submodule .vim/bundle/vimproc.vim updated: 0f68bcd933...f96e476e41
Submodule .vim/bundle/vundle updated: cfd3b2d388...5f70ae6025
2
Makefile
2
Makefile
@@ -28,7 +28,7 @@ valgrind:
|
||||
cp valgrindrc ~/.valgrindrc
|
||||
|
||||
vim:
|
||||
cp vimrc ~/.vimrc.local
|
||||
cp vimrc ~/.vimrc
|
||||
cp -r .vim ~/.vim
|
||||
|
||||
zsh:
|
||||
|
10
cabal/config
10
cabal/config
@@ -14,10 +14,10 @@
|
||||
-- require-sandbox: False
|
||||
-- ignore-sandbox: False
|
||||
remote-repo: hackage.haskell.org:http://hackage.haskell.org/packages/archive
|
||||
remote-repo-cache: /Users/sidharta/.cabal/packages
|
||||
remote-repo-cache: /Users/veitheller/.cabal/packages
|
||||
-- local-repo:
|
||||
-- logs-dir:
|
||||
world-file: /Users/sidharta/.cabal/world
|
||||
world-file: /Users/veitheller/.cabal/world
|
||||
-- verbose: 1
|
||||
-- compiler: ghc
|
||||
-- with-compiler:
|
||||
@@ -41,7 +41,7 @@ world-file: /Users/sidharta/.cabal/world
|
||||
-- flags:
|
||||
-- extra-include-dirs:
|
||||
-- extra-lib-dirs:
|
||||
extra-prog-path: /Users/sidharta/.cabal/bin
|
||||
extra-prog-path: /Users/veitheller/.cabal/bin
|
||||
-- instantiate-with:
|
||||
-- tests: False
|
||||
-- library-coverage:
|
||||
@@ -66,7 +66,7 @@ documentation: True
|
||||
-- upgrade-dependencies: False
|
||||
-- root-cmd:
|
||||
-- symlink-bindir:
|
||||
build-summary: /Users/sidharta/.cabal/logs/build.log
|
||||
build-summary: /Users/veitheller/.cabal/logs/build.log
|
||||
-- build-log:
|
||||
remote-build-reporting: anonymous
|
||||
-- report-planning-failure: False
|
||||
@@ -92,7 +92,7 @@ haddock
|
||||
-- contents-location:
|
||||
|
||||
install-dirs user
|
||||
-- prefix: /Users/sidharta/.cabal
|
||||
-- prefix: /Users/veitheller/.cabal
|
||||
-- bindir: $prefix/bin
|
||||
-- libdir: $prefix/lib
|
||||
-- libsubdir: $abi/$pkgkey
|
||||
|
@@ -29,6 +29,10 @@
|
||||
[apply]
|
||||
whitespace = fix
|
||||
|
||||
[branch]
|
||||
autosetupmerge = always
|
||||
autosetuprebase = always
|
||||
|
||||
[color]
|
||||
branch = auto
|
||||
diff = auto
|
||||
|
6
zshrc
6
zshrc
@@ -2,7 +2,7 @@
|
||||
|
||||
zstyle ':completion:*' completer _expand _complete _ignored _approximate
|
||||
zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'm:{[:lower:]}={[:upper:]}' 'r:|[._-_]=** r:|=**' ''
|
||||
zstyle :compinstall filename '/Users/sidharta/.zshrc'
|
||||
zstyle :compinstall filename '/Users/veitheller/.zshrc'
|
||||
|
||||
autoload -Uz compinit -D && compinit
|
||||
autoload -U promptinit && promptinit
|
||||
@@ -20,7 +20,9 @@ bindkey -e
|
||||
|
||||
export GOPATH=~/.go
|
||||
export GOBIN=$GOPATH/bin
|
||||
export PATH=$PATH:/opt/local/bin:/usr/local/sbin:~/.cabal/bin:$GOBIN
|
||||
export GHC_HOME=/usr/local/bin
|
||||
export CABAL_HOME=$HOME/.cabal/
|
||||
export PATH=$GHC_HOME:$CABAL_HOME/bin:$PATH:/opt/local/bin:/usr/local/sbin:~/.cabal/bin:$GOBIN
|
||||
export MANPATH=$MANPATH:/opt/local/share/man:/usr/local/opt/erlang/lib/erlang/man
|
||||
export INFOPATH=$INFOPATH:/opt/local/share/info
|
||||
export PYTHONSTARTUP=~/.pythonrc
|
||||
|
Reference in New Issue
Block a user