https://github.com/erniebrodeur/goprompt
a hyper fast, lightly configurable prompt system written in Go for speed.
https://github.com/erniebrodeur/goprompt
go golang prompt shell zsh
Last synced: 5 months ago
JSON representation
a hyper fast, lightly configurable prompt system written in Go for speed.
- Host: GitHub
- URL: https://github.com/erniebrodeur/goprompt
- Owner: erniebrodeur
- License: gpl-3.0
- Created: 2025-01-22T00:25:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-22T18:30:41.000Z (over 1 year ago)
- Last Synced: 2025-02-09T23:52:58.910Z (over 1 year ago)
- Language: Go
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goprompt
[](https://www.codefactor.io/repository/github/erniebrodeur/goprompt)
[](https://goreportcard.com/report/github.com/erniebrodeur/goprompt)
## Usage
Install
go get github.com/erniebrodeur/goprompt/cmd/goprompt
then
goprompt
## Shell Integration
### Zsh
```
#!/bin/zsh
#------------------------------
# Prompt
#------------------------------
function precmd () {
PROMPT=`~/go/bin/goprompt`
}
```