From c31f9e6b7f7ab6afcaae2730430425c7ba3f19e2 Mon Sep 17 00:00:00 2001 From: Stephane Del Pino <stephane.delpino44@gmail.com> Date: Sun, 8 Mar 2020 22:26:46 +0100 Subject: [PATCH] Nettoyage encore --- .gitignore | 1 + init.el | 15 +++++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c24b169..850648b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ myinit.el /elpa/ /irony/ /projectile-bookmarks.eld +/transient/ \ No newline at end of file diff --git a/init.el b/init.el index bdcdf9a..41b676b 100644 --- a/init.el +++ b/init.el @@ -1,3 +1,7 @@ +;;; configuration --- Une configuration Emacs +;;; Commentary: +;;; configuration piochee sur le net +;;; Code: (setq max-lisp-eval-depth 10000) (setq max-specpdl-size 10000) @@ -5,7 +9,8 @@ (setq package-enable-at-startup nil) -(setq is-standalone nil) +;; set is-standalone to true to use the local melpa archive +(defvar is-standalone nil) (if is-standalone (setq package-archives '(("myelpa" . "~/.emacs.d/myelpa/"))) '((add-to-list 'package-archives @@ -56,6 +61,8 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(aw-leading-char-face ((t (:inherit ace-jump-face-foreground :height 3.0))))) -;; Local Variables: -;; byte-compile-warnings: (not free-vars) -;; End: + +;;; Local Variables: +;;; byte-compile-warnings: (not free-vars) +;;; End: (provide 'init) +;;; init.el ends here -- GitLab