浏览代码

Adding shell_cfg.sh

Vinicius Teshima 1 年之前
父节点
当前提交
a3276c4c7f
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      .config/shell_cfg.sh

+ 16 - 0
.config/shell_cfg.sh

@@ -0,0 +1,16 @@
+#!/bin/sh
+
+set -E
+
+export TERM="xterm-256color"
+
+export VISUAL="vim"
+export SUDO_EDITOR="vim"
+
+alias ls="ls -lahg --color=always --group-directories-first"
+alias grep='grep --color=auto'
+alias dotfiles="git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
+
+PS1="\h \$? \$ "
+
+umask 0077