-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu.profile.bash
35 lines (28 loc) · 1.07 KB
/
ubuntu.profile.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env bash
if [[ "$DOTFILE_TRACE" -eq 1 ]]; then
echo "* Sourcing ubuntu.profile.bash"
echo "PATH = $PATH"
fi
# Uncomment to debug .bashrc
#set -o xtrace
# Location of .files directory
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
export PYTHON_VERSION='3.10.4'
# Your place for hosting Git repos. I use this for private repos.
# TODO: Set this to NAS git
export GIT_HOSTING='git@github.com'
# Add --theme base16 to tldr (npm version) for color output
alias tldr='tldr -t base16'
# shellcheck source=./includes/bashit.bash
source "$BASEDIR"/includes/bashit.bash
# shellcheck source=./includes/work.bash
source "$BASEDIR"/includes/work.bash
# shellcheck source=./includes/ubuntu.bash
source "$BASEDIR"/includes/ubuntu.bash
# shellcheck source=./includes/dev-vms.bash
source "$BASEDIR"/includes/dev-vms.bash
# shellcheck source=./includes/ls-colors.bash
source "$BASEDIR"/includes/ls-colors.bash
# See /usr/share/doc/fzf/README.Debian for more info on fzf config under Ubuntu.
# BashIt's fzf plugin isn't working
source /usr/share/doc/fzf/examples/key-bindings.bash