Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
exec 2>&1
exec /usr/local/sbin/nginx -c ./nginx.conf
# svscan - daemontools
#
# This service starts daemontools from the point the system is
# started until it is shut down again.
start on runlevel 2
start on runlevel 3
start on runlevel 4
start on runlevel 5
" \t tabs
set expandtab
set smartindent
set smarttab
set tabstop=8
set shiftwidth=4
;; Lisp setup
(require 'cl)
(add-to-list 'load-path "~/.emacs.d")
;; Keep customizations in a separate file
(setq custom-file "~/.emacs.d/emacs-custom.el")
(load custom-file 'noerror)
;; Manual customizations
(blink-cursor-mode nil)
;; On X11, change the pointer to an arrow
(if (boundp 'x-pointer-arrow)
(progn
(setq-default x-pointer-shape x-pointer-arrow)
;; hack to force the pointer shape to change
(set-mouse-color "black")))