Last active
May 9, 2024 14:09
-
-
Save redguardtoo/8a0c781c6796f9cd55cb724117f4f359 to your computer and use it in GitHub Desktop.
minimum emacs setup for Emacs plugin testing
This file contains 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) | |
(add-to-list 'package-archives '("melpa" . "http://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