Skip to content

Instantly share code, notes, and snippets.

View markcameron's full-sized avatar

Mark Cameron markcameron

  • Coppet, Switzerland
View GitHub Profile
@markcameron
markcameron / .emacs.mac
Created January 14, 2013 10:33
.emacs for mac
;;(add-to-list 'load-path "D:/Program Files/emacs-23.3/emacs-related/")
;; Mac specific
;(setq mac-option-modifier 'command)
;(setq mac-option-modifier nil)
;(setq mac-command-modifier 'meta)
;; No Blinking Cursor
(blink-cursor-mode 0)
;; No Toolbar
@markcameron
markcameron / .emacs
Last active December 31, 2015 12:39
Emacs init file for 24.2 on Windows 8.1
(setq emacs-related-path "C:/Program Files/emacs-24.2/emacs-related/")
(add-to-list 'load-path emacs-related-path)
;; No Blinking Cursor
(blink-cursor-mode 0)
;; No Toolbar
(tool-bar-mode 0)
@markcameron
markcameron / docker-compose.yml
Last active December 8, 2020 22:59
docker-compose.yml for traefik v2.2 with LetsEncrypt auto SSL and http -> https redirect - Replace <*> with your settings
version: "3.3"
services:
traefik:
image: "traefik:v2.2"
restart: unless-stopped
command:
- "--entrypoints.http.address=:80"
- "--entrypoints.https.address=:443"
- "--providers.docker"