This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
exec 2>&1 | |
exec /usr/local/sbin/nginx -c ./nginx.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" \t tabs | |
set expandtab | |
set smartindent | |
set smarttab | |
set tabstop=8 | |
set shiftwidth=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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"))) |
NewerOlder