summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano <55825613+luevano@users.noreply.github.com>2020-02-10 11:46:10 -0700
committerDavid Luevano <55825613+luevano@users.noreply.github.com>2020-02-10 11:46:10 -0700
commitcba23b66f83ead462fc56d878b0cdde6e3fea811 (patch)
tree9a66bc4a2c145809b941f5b2652ea5f66eb986b0
parentef655fb55c9e08f7ebc875020c491b7ae2aedbb8 (diff)
Add bash files
-rw-r--r--.bashrc9
-rw-r--r--.profile17
2 files changed, 26 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
new file mode 100644
index 0000000..a355b0c
--- /dev/null
+++ b/.bashrc
@@ -0,0 +1,9 @@
+#
+# ~/.bashrc
+#
+
+# If not running interactively, don't do anything
+[[ $- != *i* ]] && return
+
+alias ls='ls --color=auto'
+PS1='[\u@\h \W]\$ '
diff --git a/.profile b/.profile
new file mode 100644
index 0000000..9a89cfc
--- /dev/null
+++ b/.profile
@@ -0,0 +1,17 @@
+#
+# ~/.profile
+#
+
+##--Environment variables--##
+# Default programs.
+export EDITOR="nvim"
+export VISUAL="nvim"
+export VISUAL_EDITOR="nvim"
+export TERMINAL="alacritty"
+export BROWSER="google-chrome-stable"
+export READER="zathura"
+export FILE="ranger"
+export STATUSBAR="i3blocks"
+
+# ~/ cleanup.
+export ZDOTDIR="$HOME/.config/zsh"