Skip to content

Instantly share code, notes, and snippets.

@TerryTsao
Forked from redguardtoo/.emacs
Created April 30, 2020 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TerryTsao/b044faa3c4b7ec6a749b75fceddddc32 to your computer and use it in GitHub Desktop.
Save TerryTsao/b044faa3c4b7ec6a749b75fceddddc32 to your computer and use it in GitHub Desktop.
minimum emacs setup for Emacs plugin testing
;; 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