Last active
June 7, 2020 08:49
-
-
Save fdelbos/e0495577103a9d6ef3c0d54689fc6b05 to your computer and use it in GitHub Desktop.
base docker config files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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