28 lines
895 B
Bash
Executable File
28 lines
895 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export PATH="$PATH:$HOME:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$DOTFILES_DIR/bin:$HOME/apps:/opt/sublime-text"
|
|
|
|
#Add Pycharm to the Path
|
|
export PATH="$PATH:$HOME/apps/pycharm-2017.1.1/bin/pycharm.sh"
|
|
|
|
|
|
# Make vim the default editor.
|
|
export EDITOR='vim';
|
|
|
|
# Enable persistent REPL history for `node`.
|
|
export NODE_REPL_HISTORY=~/.node_history;
|
|
# Allow 32³ entries; the default is 1000.
|
|
export NODE_REPL_HISTORY_SIZE='32768';
|
|
# Use sloppy mode by default, matching web browsers.
|
|
export NODE_REPL_MODE='sloppy';
|
|
|
|
# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr.
|
|
export PYTHONIOENCODING='UTF-8';
|
|
|
|
# Increase Bash history size. Allow 32³ entries; the default is 500.
|
|
export HISTSIZE='32768';
|
|
export HISTFILESIZE="${HISTSIZE}";
|
|
# Omit duplicates and commands that begin with a space from history.
|
|
export HISTCONTROL='ignoreboth';
|
|
|