blob: 461d241cc1df25e946af336706b1f3c2ac73be9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;; chess site-lisp configuration
(setq load-path (cons "@SITELISP@" load-path))
(require 'chess)
;; Change the engine preference order -- gnuchess is a dependency (we
;; depend on app-games/gnuchess explicitly). We make crafty and
;; phalanx optional. The user can override this anytime using M-x
;; customize-group RET chess RET
(custom-set-variables
'(chess-default-engine (quote (chess-gnuchess chess-crafty chess-phalanx))))
|