Skip to content

Instantly share code, notes, and snippets.

View mmaulwurff's full-sized avatar
⚙️

Alexander Kromm (m8f) mmaulwurff

⚙️
View GitHub Profile
@mmaulwurff
mmaulwurff / ball.zs
Created February 5, 2021 15:45
Experiment: kickable ball in Doom
// https://youtu.be/jkag1sEvdug
class Ball : Actor
{
Default
{
Mass 100;
Radius 10;
Height 20;
@mmaulwurff
mmaulwurff / menudef.hellscape-navigator-quick-menu
Created September 28, 2020 17:12
Quick settings menu for Hellscape Navigator
AddOptionMenu OptionsMenu
{
Submenu "Hellscape Navigator Quick Options", hn_QuickOptions
}
OptionMenu hn_QuickOptions
{
Title "Hellscape Navigator Quick Options"
StaticText "Compass Position", 1
@mmaulwurff
mmaulwurff / zshrc
Created May 20, 2019 03:43
my zshrc
# Path to your oh-my-zsh installation.
export ZSH=/home/kromm/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="agnoster"
# Uncomment the following line to use case-sensitive completion.
@mmaulwurff
mmaulwurff / _gzdoom
Last active February 9, 2019 06:56
zsh completion for GZDoom
#compdef _gzdoom
# Completions for GZDoom
# Tested on GZDoom 3.7.2, zsh 5.3.1
#
# Version: 0.1
#
# Known problems/limitations
# P1. Completion doesn't reflect that a single -file option can take multiple files.
#