Remove indent level setup

This commit is contained in:
Gergely Polonkai 2020-09-07 11:14:37 +02:00
parent add1590e1d
commit 107869d019
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 3 additions and 1 deletions

View File

@ -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 thats 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 thats 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