view bashrc/bashrc @ 387:de3af7240a61

Use the new Vim version as the default Mercurial editor.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 23 May 2017 13:56:53 -0700
parents 4963dd2dcefc
children 5dcfe74f0465
line wrap: on
line source

# -----------------------------------------------
# PATH
# -----------------------------------------------

# Personal binaries.
PATH=$HOME/bin:$PATH

# Homebrew binaries.
PATH=/usr/local/sbin:/usr/local/bin:$PATH

# Python from Homebrew
#PATH=/usr/local/share/python:$PATH

# Ruby from Homebrew
#PATH=/usr/local/Cellar/ruby/1.9.3-p194/bin:$PATH

# Local binaries
PATH=$HOME/.local/bin:$PATH

# Done!
export PATH


# -----------------------------------------------
# Shell Environment
# -----------------------------------------------

# Large history without duplicates.
export HISTSIZE=10000
export HISTFILESIZE=10000
export HISTCONTROL=erasedups

# Use VIM by default.
export EDITOR="vim"

# OS for some of my scripts.
export OS=MacOSX

# Pretty colors.
export TERM=xterm-256color