Skip to content

Instantly share code, notes, and snippets.

@fdelbos
Last active June 7, 2020 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fdelbos/e0495577103a9d6ef3c0d54689fc6b05 to your computer and use it in GitHub Desktop.
Save fdelbos/e0495577103a9d6ef3c0d54689fc6b05 to your computer and use it in GitHub Desktop.
base docker config files
BLOCKSIZE=m; export BLOCKSIZE
PAGER=less; export PAGER
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export HISTCONTROL=ignoreboth:erasedups
alias l='ls -lah'
alias c='cat'
alias e='emacs'
if [ -f /root/.bash-git-prompt/gitprompt.sh ]; then
GIT_PROMPT_ONLY_IN_REPO=1
source /root/.bash-git-prompt/gitprompt.sh
fi
export GIT_PROMPT_THEME=Solarized_Extravagant
(load-theme 'manoj-dark)
(global-linum-mode t)
(setq linum-format "%d ")
(setq visible-bell t)
(line-number-mode 1)
(column-number-mode 1)
(global-font-lock-mode t)
(setq font-lock-maximum-size nil)
(setq-default transient-mark-mode t)
(menu-bar-mode -1)
(setq backup-inhibited t)
(setq auto-save-default nil)
(setq inhibit-startup-message t)
(load-library "paren")
(show-paren-mode 1)
(transient-mark-mode t)
(setq make-backup-files nil
backup-inhibited t)
(fset 'yes-or-no-p 'y-or-n-p)
(setq next-line-add-newlines nil)
;; time display format
(display-time)
(setq display-time-format "%H:%M")
(setq show-trailing-whitespace t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment