Skip to content

Instantly share code, notes, and snippets.

View bonanitech's full-sized avatar

Mauricio Bonani bonanitech

View GitHub Profile
@bonanitech
bonanitech / dnsmasq OS X.md
Created June 22, 2022 14:53 — forked from ogrrd/dnsmasq OS X.md
Setup dnsmasq on OS X

Never touch your local /etc/hosts file in OS X again

To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.

Requirements

Install

@bonanitech
bonanitech / zshrc
Created December 28, 2019 22:53 — forked from LukeSmithxyz/zshrc
# Luke's config for the Zoomer Shell
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
@bonanitech
bonanitech / settings.json
Last active May 15, 2019 19:55
VSCode Midnight Dark Theme (applied over Default Dark+)
{
"workbench.colorCustomizations": {
"activityBar.background": "#434954",
"editor.background": "#2E333A",
"editor.lineHighlightBorder": "#383C45",
"list.inactiveSelectionBackground": "#383C45",
"sideBar.background": "#383C45",
"sideBarSectionHeader.background": "#434954"
}
}