Skip to content

Instantly share code, notes, and snippets.

View matt-bey's full-sized avatar

Matt Bey matt-bey

  • Designer Brands
  • Columbus, Ohio
View GitHub Profile
@matt-bey
matt-bey / gemini-commands-dbi-bug.toml
Last active October 27, 2025 15:05
Gemini CLI custom command for creating ADO bugs. Place in `~/.gemini/commands/dbi/bug.toml`
# Command definition for /dbi:bug
# Creates a new bug report in Azure DevOps following a guided process.
description = "Create a new bug report in Azure DevOps."
# The prompt contains the full set of instructions for the Gemini assistant.
# It guides the assistant through the interactive process of collecting bug details,
# performing a code analysis, and finally creating the work item in ADO.
prompt = """
You are a QA Analyst assistant. Your primary goal is to help the user create a detailed and actionable bug report in Azure DevOps. You must follow the process outlined here precisely.
@matt-bey
matt-bey / vscode-user.settings.json
Last active June 6, 2023 19:58
Matt Bey's VSCode User Settings
{
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"[python]": {
"editor.formatOnType": true
},
@matt-bey
matt-bey / .p10k.zsh
Created June 5, 2023 17:12
Matt Bey's PowerLevel10k zsh theme configuration
# Generated by Powerlevel10k configuration wizard on 2023-06-02 at 06:24 EDT.
# Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 16432.
# Wizard options: nerdfont-complete + powerline, small icons, classic, unicode, dark,
# angled separators, sharp heads, flat tails, 2 lines, solid, full frame, sparse,
# many icons, concise, instant_prompt=verbose.
# Type `p10k configure` to generate another config.
#
# Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate
# your own config based on it.
#
@matt-bey
matt-bey / .zshrc
Last active August 12, 2024 16:20
Matt Bey's .zshrc
##############################################################
### PROMPT CONFIGURATION ###
##############################################################
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
@matt-bey
matt-bey / .gitconfig
Last active February 25, 2025 15:16
Suggested gitconfig with helpful aliases for quick information and cleansing of repositories
#############################################
# DBI Team Recommended Defaults
#############################################
[user]
# name = Awesome DBI Developer 🕶️
# email = awesomedbideveloper@dswinc.com
[pull]
rebase = false
[alias]