blob: b69b0a9f88ef1acde16f0a8fd07e120b9c860d91 (
plain)
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
42
43
44
45
46
47
48
49
50
|
source /etc/profile
source "$HOME/.cursed_bash.sh"
source /usr/share/git/git-prompt.sh
source /usr/share/doc/pkgfile/command-not-found.bash
# application shortcuts
alias ls="ls --color"
alias dl="~/.local/bin/download"
alias qmake="/usr/lib/qt6/bin/qmake"
alias psiphon="psiphon-console-client"
alias cppreference="microsoft-edge-dev /usr/share/doc/cppreference/en/cpp.html"
alias lan="/home/main/zerotierconnect.sh"
alias python=/home/main/coding/py/venv/bin/python3
# shell options
shopt -s autocd
# # 256 colors
# C_VIOLETISH="\[\e[38;5;183m\]"
# C_="\[\e[38;5;183m\]"
# # ANSII colors
# C_RED="\[\e[31m\]"
# C_GREEN="\[\e[32m\]"
# C_YELLOW="\[\e[33m\]"
# C_BLUE="\[\e[34m\]"
# C_MAGENTA="\[\e[35m\]"
# C_CYAN="\[\e[36m\]"
# C_WHITE="\[\e[37m\]"
# # bright colors
# C_BRED="\[\e[91m\]"
# C_BGREEN="\[\e[92m\]"
# C_BYELLOW="\[\e[93m\]"
# C_BBLUE="\[\e[94m\]"
# C_BMAGENTA="\[\e[95m\]"
# C_BCYAN="\[\e[96m\]"
# C_BWHITE="\[\e[97m\]"
# # font modifiers
# C_BOLD="\[\e[1m\]"
# C_BLINK="\[\e[5m\]"
# # reset
# C_RESET="\[\e[0m\]"
export JAVA_HOME="/usr/lib/jvm/default/"
export PS1='[\[\e[1;32m\]\u@\h\[\e[0m\]:\[\e[36m\]\W\[\e[93m\]$(__git_ps1 "(%s" | cut_dots 15 ")")\[\e[37m]\[\e[38;5;183m\]\$\[\e[0m\] '
# dotfiles
GHC_PACKAGE_PATH="/usr/lib/ghc-9.0.2/package.conf.d"
# Created by `pipx` on 2023-08-09 18:40:17
append_path '/home/main/.local/bin'
append_path '/home/main/.cargo/bin'
|