From b5d24a676866ad93be7ea6175cd29bf155c85ca4 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 25 Aug 2015 16:56:05 +0200 Subject: Emacs: Install and use dtrt-indent-mode --- tag-emacs/emacs.d/Cask | 1 + tag-emacs/emacs.d/init.org | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index d6dbad2..b55830c 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -33,6 +33,7 @@ (depends-on "dired-subtree") (depends-on "discover") (depends-on "discover-my-major") +(depends-on "dtrt-indent") (depends-on "elisp-slime-nav") (depends-on "emmet-mode") (depends-on "epl") diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index cd4b36d..8b2bc8b 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -615,6 +615,20 @@ with spaces. Perfect! (smart-tabs-mode indent-tabs-mode))))) #+END_SRC +** dtrt-indent-mode + +Sometimes people use different indentation settings. [[https://github.com/jscheid/dtrt-indent][dtrt-indent]] +guesses the correct settings for me. + +#+BEGIN_SRC emacs-lisp + (req-package dtrt-indent + :init (dtrt-indent-mode 1) + :config (progn + (defadvice dtrt-indent-try-set-offset (after toggle-smart-tabs activate) + (message "setting smart-tabs-mode") + (smart-tabs-mode (or indent-tabs-mode -1))))) +#+END_SRC + * Security ** password-store -- cgit 1.4.1