You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
laughing-hipster/.environment

55 lines
1.7 KiB

#!/bin/bash
# Bash behavior
shopt -s checkwinsize # Checks window size to get proper line wrapping
shopt -s cdspell # Corrects minor spelling errors when cd-ing
set -o vi # Set prompt to vi mode
set -o notify # Report status of terminated background jobs immediately
# History
HISTCONTROL=ignoreboth:erasedups # No duplicate commands in history
HISTSIZE=50000 # For a huge history
export HISTIGNORE="[ ]*:&:bg:fg:exit:clear" # Don't save these commands in the history
shopt -s histappend # Append to the history file, not overwrite
# see environ manfile - just setting up my shell environment
export LESS='-iMR' # Case insensite search, verbose prompting and raw output
export PAGER=less # Used to display text / man files
export LANG="en_US.UTF-8"
export POWERLINE_CONFIG_COMMAND=~/Tools/modules/powerline/scripts/powerline-config
export WINDOWS=false
if [ -d "${HOME}/.bin" ] ; then
PATH=${HOME}/.bin:${PATH}
fi
export GIT_EDITOR=vim
# give windows boxes a chance to override environment
if [ -d "/c/Windows" ]; then
WINDOWS="TRUE"
GIT_EDITOR=~/tools/vim/gvim.exe
if [ -f ~/.windows ]; then
. ~/.windows
fi
fi
export EDITOR=$GIT_EDITOR
export VISUAL=$EDITOR
if [ -d "${HOME}/tools/vim" ] ; then
PATH=${HOME}/tools/vim:${PATH}
fi
PATH=/usr/local/bin:${GOPATH}/bin:${GOROOT}/bin:${PATH}
# http://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux
# run these to increase concurrent connections in linux
# sudo sysctl net.ipv4.ip_local_port_range="18000 61000"
# sudo sysctl net.ipv4.tcp_fin_timeout="30"
# sudo sysctl net.ipv4.tcp_tw_recycle=1
# sudo sysctl net.ipv4.tcp_tw_reuse=1