Skip to content

Instantly share code, notes, and snippets.

@pamburus
pamburus / OneDarkNeo.itermcolors
Last active July 6, 2023 21:37
OneDarkNeo theme for iTerm2
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Alpha Component</key>
<real>1</real>
<key>Blue Component</key>
<real>0.20000000298023224</real>
@pamburus
pamburus / alacritty.yml
Last active July 7, 2023 06:58
Alacritty configuration file
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env:
# TERM variable
#
# This value is used to set the `$TERM` environment variable for
# each instance of Alacritty. If it is not present, alacritty will
@pamburus
pamburus / example.go
Last active February 19, 2017 19:46
Gorilla mux routing by queries example.
package main
import (
"fmt"
"net/http"
"github.com/gorilla/mux"
)
type itemHandler struct {