8000 GitHub - nuoyan/emacs-config: All my Emacs config, and the dependencies. Currently tested with Aquamacs on OS X and Emacs 22 on Ubuntu
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

All my Emacs config, and the dependencies. Currently tested with Aquamacs on OS X and Emacs 22 on Ubuntu

Notifications You must be signed in to change notification settings

nuoyan/emacs-config

 
 

Repository files navigation

;; -*- Emacs-Lisp -*-

;; This repository has all my Emacs config, which is loaded through a .emacs file like the following:

(let ((homedir-by-system-type
       (cond
         ((or (eq system-type 'cygwin)
              (eq system-type 'gnu/linux))
          "/home/cb")
         ((eq system-type 'darwin)
          "/Users/cb")
         (t "c:/home/cb"))))
  (defvar *home-path* (file-name-as-directory homedir-by-system-type))
  (defvar *home-elisp-path* (concat *home-path* "/Projects/emacs-config"))
  (load-file (expand-file-name "subdirs.el" *home-elisp-path*)))


;; You should just change the home directory and/or elisp paths above 
;; and save this into your .emacs or Aquamacs Preferences.el on Mac OS X

About

All my Emacs config, and the dependencies. Currently tested with Aquamacs on OS X and Emacs 22 on Ubuntu

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0