-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.zsh
186 lines (158 loc) · 4.59 KB
/
init.zsh
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# shellcheck shell=bash
######################################################################
#<
#
# Function: p6df::modules::python::deps()
#
#>
######################################################################
p6df::modules::python::deps() {
ModuleDeps=(
p6m7g8-dotfiles/p6df-zsh
p6m7g8-dotfiles/p6python
pyenv/pyenv
ohmyzsh/ohmyzsh:plugins/poetry
ohmyzsh/ohmyzsh:plugins/poetry-env
)
}
######################################################################
#<
#
# Function: p6df::modules::python::vscodes()
#
#>
######################################################################
p6df::modules::python::vscodes() {
code --install-extension FedericoVarela.pipenv-scripts
code --install-extension ms-python.vscode-pylance
code --install-extension ms-python.pylint
code --install-extension ms-python.flake8
code --install-extension ms-python.mypy-type-checker
code --install-extension ms-python.black-formatter
code --install-extension ms-python.isort
code --install-extension zeshuaro.vscode-python-poetry
p6_return_void
}
######################################################################
#<
#
# Function: p6df::modules::python::external::yum()
#
#>
######################################################################
p6df::modules::python::external::yum() {
sudo yum install gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel
p6_return_void
}
######################################################################
#<
#
# Function: p6df::modules::python::external::brew()
#
#>
######################################################################
p6df::modules::python::external::brew() {
p6df::modules::homebrew::cli::brew::install watchman
p6_return_void
}
######################################################################
#<
#
# Function: p6df::modules::python::home::symlink()
#
# Environment: P6_DFZ_SRC_P6M7G8_DOTFILES_DIR
#>
######################################################################
p6df::modules::python::home::symlink() {
p6_file_symlink "$P6_DFZ_SRC_P6M7G8_DOTFILES_DIR/p6df-python/share/.pip" ".pip"
p6_return_void
}
######################################################################
#<
#
# Function: p6df::modules::python::langs()
#
#>
######################################################################
p6df::modules::python::langs() {
p6df::modules::python::langs::pull
p6df::modules::python::langs::nuke
p6df::modules::python::langs::install
p6df::modules::python::langs::pip
p6_return_void
}
######################################################################
#<
#
# Function: p6df::modules::python::init(_module, dir)
#
# Args:
# _module -
# dir -
#
# Environment: HOME P6_DFZ_SRC_DIR
#>
######################################################################
p6df::modules::python::init() {
local _module="$1"
local dir="$2"
p6_bootstrap "$dir"
compdef _pipenv pipenv
p6_path_if "$HOME/.local/bin" "$PATH" # XXX Must be before shims
p6df::core::lang::mgr::init "$P6_DFZ_SRC_DIR/pyenv/pyenv" "py"
# eval "$($bin init --path)"
p6_return_void
}
######################################################################
#<
#
# Function: str str = p6df::modules::pipenv::prompt::info()
#
# Returns:
# str - str
#
# Environment: P6_DFZ_REAL_CMD PIPENV_ACTIVE
#>
######################################################################
p6df::modules::pipenv::prompt::info() {
local cache_key="pipenv"
case "$P6_DFZ_REAL_CMD" in
*pipenv* | *cd*)
grep -v "^$cache_key=" "$P6_DFZ_PROMPT_CACHE" >"$P6_DFZ_PROMPT_CACHE.tmp" && mv "$P6_DFZ_PROMPT_CACHE.tmp" "$P6_DFZ_PROMPT_CACHE"
local env=$(p6_run_code pipenv --venv 2>/dev/null)
echo "$cache_key=$env" >>"$P6_DFZ_PROMPT_CACHE"
;;
esac
local env=$(grep -E "^$cache_key=" "$P6_DFZ_PROMPT_CACHE" | tail -1 | cut -d '=' -f 2)
if ! p6_string_blank "$env"; then
env=$(p6_uri_name "$env")
local astr
if p6_string_eq "$PIPENV_ACTIVE" "1"; then
astr="active"
else
astr="off"
fi
local str="pipenv:\t\t $env ($astr)"
p6_return_str "$str"
else
p6_return_void
fi
}
######################################################################
#<
#
# Function: str str = p6df::modules::py::env::prompt::info()
#
# Returns:
# str - str
#
# Environment: PYENV_ROOT PYTHONPATH
#>
######################################################################
p6df::modules::py::env::prompt::info() {
local str="pyenv_root:\t $PYENV_ROOT"
if ! p6_string_blank "$PYTHONPATH"; then
str=$(p6_string_append "$str" "pythonpath:\t $PYTHONPATH" "$P6_NL")
fi
p6_return_str "$str"
}