Skip to content

Instantly share code, notes, and snippets.

View brunobmello25's full-sized avatar

Bruno Mello brunobmello25

View GitHub Profile
@ironlungx
ironlungx / nvim-pio.md
Last active July 5, 2026 13:05
PlatformIO with Neovim

Caution

I've moved this gist over to a template repository here. Everything here is unmaintained...

Extensions

Following are the extensions required for neovim:

@keenanwoodall
keenanwoodall / _ Raylib + microui for Odin.md
Last active July 18, 2026 07:59
Easy two-line raylib + microui integration for the Odin programming language

Odin + Raylib + microui

  1. Copy/paste rlmu.odin into an rlmu/ folder in your Odin project
  2. Import rlmu package import "rlmu"
  3. Import microui package import mu "vendor:microui"
  4. Call rlmu lifecycle procs like so:
main :: proc() {
    rl.SetWindowState({ rl.ConfigFlag.WINDOW_RESIZABLE })
 rl.InitWindow(720, 600, "Odin/Raylib/microui Demo")