-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
72 lines (55 loc) · 2.19 KB
/
.profile
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
export EDITOR="nvim"
if [ $(uname) = "Darwin" ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/coreutils/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/findutils/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/findutils/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/grep/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/grep/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/gnu-getopt/bin:$PATH"
export MANPATH="/opt/homebrew/opt/gnu-getopt/man:$MANPATH"
export PATH="/opt/homebrew/opt/gnu-indent/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/gnu-indent/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/gnu-sed/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/gnu-tar/libexec/gnubin:$PATH"
export MANPATH="/opt/homebrew/opt/gnu-tar/libexec/gnuman:$MANPATH"
export PATH="/opt/homebrew/opt/sqlite/bin:$PATH"
if [ -f $HOME/.orbstack/shell/init.bash ]; then
# Added by OrbStack: command-line tools and integration
# This won't be added again if you remove it.
source $HOME/.orbstack/shell/init.bash 2>/dev/null || :
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
if [ -d "$HOME/go/bin" ] ; then
PATH="$HOME/go/bin:$PATH"
fi
if [ -f "$HOME/.cargo/env" ] ; then
. "$HOME/.cargo/env"
fi
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
tmux has-session -t main 2> /dev/null
if [ $? != 0 ]; then
tmux new -s main -dc ~
tmux splitw -dvt main:0. -l5 htop
if [ $(uname) = "Darwin" ] && $(command -v ollama > /dev/null); then
tmux send-keys -t main:0.0 "ollama run qwen2.5-coder:7b" Enter "C-l"
tmux splitw -dvt main:0.0 -c $HOME
fi
fi