Skip to content

Instantly share code, notes, and snippets.

View onnenon's full-sized avatar

Stephen Onnen onnenon

View GitHub Profile
@onnenon
onnenon / starship.toml
Created October 25, 2024 13:51
Starship Config
format = """
$time\
$username\
$hostname\
$directory\
$all\
$line_break\
$git_branch\
$git_status\
$character"""
@onnenon
onnenon / convert_check_to_status.yml
Last active March 24, 2025 15:17
A GitHub Actions workflow that runs whenever a check run completes and creates a commit status with the target_url. This allows Cloudflare pages deploy previews to work with Decap CMS
name: Convert Cloudflare Check Run to Status
on:
check_run:
types: [completed]
jobs:
create_status_for_check:
name: Create Status for Check Run
runs-on: ubuntu-latest
permissions:
@onnenon
onnenon / onnen.zsh-theme
Last active January 3, 2025 15:26
zsh theme
PROMPT="
%{$fg[yellow]%}%@%{$fg[white]%} - %{$fg[magenta]%}%n%{$fg[cyan]%}@%m %{[$fg[white]%}%~%{$fg[cyan]%}]
"
PROMPT+=' $(git_prompt_info)%{$fg[magenta]%}λ %{$reset_color%}'
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}("
ZSH_THEME_GIT_PROMPT_SUFFIX=" "
ZSH_THEME_GIT_PROMPT_DIRTY=")%{$fg[red]%} **%{$fg[yellow]%}dirty%{$fg[red]%}** "
ZSH_THEME_GIT_PROMPT_CLEAN=")"