summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-10-09 18:42:06 +0300
committerThanos Apollo <[email protected]>2023-10-09 18:42:16 +0300
commite34cc83796b96c0261d3011770d0d213b5e98a97 (patch)
tree5bb407d73432b141cf1fbf8a207a542e9cb1e42d /.bashrc
parent7b8d9c16064d9d84e55286b8a33bdc3fa06cff6c (diff)
shells: Add bashrc
Zsh is more extensible, but syntax highlighting scripts etc do not play nice with ssh, plus bashrc configuration is only 8 lines long.
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
new file mode 100644
index 0000000..2731751
--- /dev/null
+++ b/.bashrc
@@ -0,0 +1,9 @@
+eval "$(starship init bash)"
+
+source ~/.shells/alias.sh
+source ~/.shells/exports.sh
+export PATH=/home/$USER/.local/bin:$PATH
+
+if [[ -r /usr/share/bash-completion/bash_completion ]]; then
+ . /usr/share/bash-completion/bash_completion
+fi