alexvollmer (owner)

Revisions

gist: 107089 Download_button fork
public
Public Clone URL: git://gist.github.com/107089.git
Embed All Files: show embed
Common Lisp #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(if (equal system-type 'darwin)
    (progn
      (setq one-buffer-one-frame nil)
      (cua-mode 0)
      (setq mac-command-modifier 'meta)
      (setq x-select-enable-clipboard t)
      (set-variable 'default-buffer-file-coding-system 'mac-roman-unix)
      (set-default-coding-systems 'mac-roman-unix)
      (set-selection-coding-system 'mac-roman)
      (set-keyboard-coding-system 'mac-roman)
      (prefer-coding-system 'mac-roman-unix)
      (setq-default cursor-type t)
      (setq browse-url-browser-function
            '(("." . browse-url-default-macosx-browser)))))