Skip to content

All my Emacs config, and the dependencies. Currently tested with Emacs 25 on OSX, Ubuntu, and Windows 10

Notifications You must be signed in to change notification settings

skeptomai/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 Emacs 25 on OSX, Ubuntu, and Windows 10

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages