Bundle item has an option to not print in the bill.
Bills and Kots should print properly with bundles
This commit is contained in:
15
README.md
15
README.md
@ -46,13 +46,13 @@ libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-d
|
||||
## 2. Install Python 3.14 using pyenv
|
||||
|
||||
```zsh
|
||||
pyenv install 3.14.0
|
||||
pyenv install 3.14
|
||||
```
|
||||
|
||||
Set the local Python version for this project:
|
||||
|
||||
```zsh
|
||||
pyenv local 3.14.0
|
||||
pyenv local 3.14
|
||||
```
|
||||
|
||||
Verify:
|
||||
@ -79,7 +79,16 @@ export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
Enable tab completion for Zsh
|
||||
```zsh
|
||||
poetry completions zsh > ~/.zfunc/_poetry
|
||||
mkdir $ZSH_CUSTOM/plugins/poetry
|
||||
poetry completions zsh > $ZSH_CUSTOM/plugins/poetry/_poetry
|
||||
```
|
||||
|
||||
You must then add poetry to your plugins array in ~/.zshrc:
|
||||
```zsh
|
||||
plugins(
|
||||
poetry
|
||||
...
|
||||
)
|
||||
```
|
||||
|
||||
Verify:
|
||||
|
||||
Reference in New Issue
Block a user