From 078581dcd96c70780a24746e1181dea148f04e6a Mon Sep 17 00:00:00 2001 From: Max Regan Date: Wed, 22 May 2019 17:02:19 +0000 Subject: [PATCH] Update '.emacs.d/init.org' --- .emacs.d/init.org | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.emacs.d/init.org b/.emacs.d/init.org index c4fcb99..93c6af6 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -402,3 +402,22 @@ Add cquery for completions. This requires. (use-package company-lsp :init (push 'company-lsp company-backends)) #+END_SRC + +Move backups to somewhere less intrusive. + +#+BEGIN_SRC emacs-lisp + + (setq backup-directory-alist `(("." . "~/.saves"))) + +#+END_SRC + +Use dumb-jump as a low-configuration option for jump-to-definition/reference. + +#+BEGIN_SRC emacs-lisp + + (use-package dumb-jump + :config (setq dumb-jump-selector 'helm) + (setq dumb-jump-force-searcher 'ag) + :init (dumb-jump-mode t)) + +#+END_SRC