-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bashrc
More file actions
41 lines (35 loc) · 1.11 KB
/
.bashrc
File metadata and controls
41 lines (35 loc) · 1.11 KB
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
36
37
38
39
40
41
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
PATH="/var/lib/flatpak/exports/bin:$PATH"
PATH="$HOME/dev/dg/tools/Android/Sdk/cmdline-tools/latest/bin:$PATH"
PATH="$HOME/dev/dg/tools/Android/Sdk/emulator:$PATH"
PATH="$HOME/dev/dg/tools/Android/Sdk/platform-tools:$PATH"
PATH="$HOME/dev/dg/tools/Android/Sdk/tools:$PATH"
PATH="$HOME/dev/dg/tools/Android/ndk-build:$PATH"
PATH="$HOME/.local/share/bob/nvim-bin:$PATH"
PATH="$HOME/.dotnet/tools:$PATH"
PATH="/opt/homebrew/bin:$PATH"
PATH="$HOME/.opam/default/bin:$PATH"
PATH="$HOME/.pub-cache/bin:$PATH"
PATH="$HOME/Applications:$PATH"
CPATH="$(clang -v 2>&1 | grep "Selected GCC installation" | rev | cut -d' ' -f1 | rev)/include"
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
. "$HOME/.cargo/env"