-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_bashrc
58 lines (47 loc) · 1.84 KB
/
dot_bashrc
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
51
52
53
54
55
56
57
58
# .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
export PATH
# 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
# Defining of prompt starts from here
export PATH="$HOME/.local/share/nvim/mason/bin:$PATH"
. "$HOME/.cargo/env"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/takuya.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/stelbent-compact.minimal.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/atomic.omp.json)"
eval "$(oh-my-posh init bash --config ~/assets/command-prompt-ohmyposh/bubbles.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/hunk.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/1_shell.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/wopian.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/tokyo.omp.json)"
# eval "$(oh-my-posh init bash --config ~/.cache/oh-my-posh/themes/star.omp.json)"
export EDITOR=nvim
export VISUAL=nvim
export TERMINAL=kitty
export PATH=$PATH:/usr/local/go/bin
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH=$BUN_INSTALL/bin:$PATH
#Zoxide
eval "$(zoxide init bash)"
#Adding eww in PATH
# export PATH="$HOME/eww/target/release/:$PATH"
export LUA_PATH="/home/bhaumik/.luarocks/share/lua/5.3/?.lua;/home/bhaumik/.luarocks/share/lua/5.3/?/init.lua;;"
export LUA_CPATH="/home/bhaumik/.luarocks/lib/lua/5.3/?.so;;"
export GTK_THEME=Catppuccin-Dark