From 107869d019b6158f232c3931f3e5dc1dff85d8a1 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 7 Sep 2020 11:14:37 +0200 Subject: [PATCH] Remove indent level setup --- configuration.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.org b/configuration.org index 5cc85a6..4353577 100644 --- a/configuration.org +++ b/configuration.org @@ -865,6 +865,7 @@ to the beginning of the file." ;; face for this match (0 font-lock-variable-name-face t))))))) #+END_SRC + ** ~idm~ (ID manager) related functions *** Get specific fields from a record in ~idm~ @@ -2835,6 +2836,7 @@ Because that’s still my favourite language. (lambda () (local-set-key (kbd "C-c o") 'ff-find-other-file) (c-set-style "PERSONAL") + (customize-set-variable 'c-basic-offset 4) (customize-set-variable 'tab-width 4) (customize-set-variable 'indent-tabs-mode nil) (c-toggle-auto-newline 1))) @@ -2845,7 +2847,7 @@ Because that’s still my favourite language. ** Set indentation levels to the same as the tab width -#+BEGIN_SRC emacs-lisp +#+BEGIN_SRC emacs-lisp :tangle no (defvaralias 'c-basic-offset 'tab-width) (defvaralias 'cperl-indent-level 'tab-width) #+END_SRC