emacs.d

My Emacs configuration files.
git clone git://soucy.cc/emacs.d.git
Log | Files | Refs | README

commit 0bd111eff4957745770e469953206929fc0038c1
parent c45bd96f17d9af8bb0c25d46797f200704d9ee4e
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Thu, 23 Mar 2023 20:28:14 -0400

Desactivate the option who create the undo tree history files

Diffstat:
Mpartials/extras.el | 101+++++++++++++++++++++++++++++++++++++++++--------------------------------------
1 file changed, 52 insertions(+), 49 deletions(-)

diff --git a/partials/extras.el b/partials/extras.el @@ -3,75 +3,78 @@ ;; (use-package undo-tree - ;; Treat undo history as a tree. - :ensure t - :pin gnu - :config - (global-undo-tree-mode 1)) + ;; Treat undo history as a tree. + :ensure t + :pin gnu + :config + (global-undo-tree-mode 1) + (with-eval-after-load 'undo-tree + (setq undo-tree-auto-save-history nil)) + ) (use-package autopair - ;; Automagically pair braces and quotes like TextMate. - :ensure t - :pin melpa - :config - (autopair-global-mode)) + ;; Automagically pair braces and quotes like TextMate. + :ensure t + :pin melpa + :config + (autopair-global-mode)) (use-package projectile - ;; Manage and navigate projects in Emacs easily. - :ensure t - :pin melpa - :config - (projectile-mode +1) - (define-key projectile-mode-map (kbd "s-p") 'projectile-command-map) - (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)) + ;; Manage and navigate projects in Emacs easily. + :ensure t + :pin melpa + :config + (projectile-mode +1) + (define-key projectile-mode-map (kbd "s-p") 'projectile-command-map) + (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)) (use-package editorconfig - ;; EditorConfig Emacs Plugin - :ensure t - :pin melpa - :config - (editorconfig-mode 1)) + ;; EditorConfig Emacs Plugin + :ensure t + :pin melpa + :config + (editorconfig-mode 1)) (use-package multiple-cursors - ;; Multiple cursors for Emacs. - :ensure t - :pin melpa - :bind (("C-c m" . mc/edit-lines) - ("C-c n" . mc/mark-next-like-this))) + ;; Multiple cursors for Emacs. + :ensure t + :pin melpa + :bind (("C-c m" . mc/edit-lines) + ("C-c n" . mc/mark-next-like-this))) (use-package exec-path-from-shell - ;; Get environment variables such as $PATH from the shell. - :ensure t - :pin melpa - :config - (exec-path-from-shell-initialize)) + ;; Get environment variables such as $PATH from the shell. + :ensure t + :pin melpa + :config + (exec-path-from-shell-initialize)) (use-package lorem-ipsum - ;; Insert dummy pseudo Latin text. - :ensure t - :pin melpa) + ;; Insert dummy pseudo Latin text. + :ensure t + :pin melpa) (use-package command-log-mode - ;; log keyboard commands to buffer. - :ensure t - :pin melpa) + ;; log keyboard commands to buffer. + :ensure t + :pin melpa) (use-package dumb-jump - ;; jump to definition for multiple languages without configuration. - :ensure t - :pin melpa - :config - (dumb-jump-mode 1)) + ;; jump to definition for multiple languages without configuration. + :ensure t + :pin melpa + :config + (dumb-jump-mode 1)) (use-package ag - ;; A front-end for ag ('the silver searcher'), the C ack replacement. - :ensure t - :pin melpa) + ;; A front-end for ag ('the silver searcher'), the C ack replacement. + :ensure t + :pin melpa) (use-package yaml-mode - ;; Major mode for editing YAML files - :ensure t - :pin melpa) + ;; Major mode for editing YAML files + :ensure t + :pin melpa) ;; Tramp (setq tramp-default-method "ssh")