-
-
Save shuxiao9058/a9cb51a4d13c154eece7dde33902feae to your computer and use it in GitHub Desktop.
minimum emacs setup for Emacs plugin testing
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
;; A minimum .emacs to test Emacs plugins | |
(show-paren-mode 1) | |
(eval-when-compile (require 'cl)) | |
;; test elisps download from internet here | |
(setq test-elisp-dir "~/test-elisp/") | |
(unless (file-exists-p (expand-file-name test-elisp-dir)) | |
(make-directory (expand-file-name test-elisp-dir))) | |
(setq load-path | |
(append | |
(loop for dir in (directory-files test-elisp-dir) | |
unless (string-match "^\\." dir) | |
collecting (expand-file-name (concat test-elisp-dir dir))) | |
load-path)) | |
;; package repositories | |
(require 'package) | |
(add-to-list 'package-archives '("melpa" . "http://stable.melpa.org/packages/") t) | |
(package-initialize) | |
;; ==== put your code below this line! | |
;; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment