Skip to content

Commit

Permalink
using indent-tabs-mode in c-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
shvorin authored and Artem Shvorin committed Nov 28, 2017
1 parent a2cda57 commit 208baf8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .emacs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
;; If there is more than one, they won't work right.
'(agda2-include-dirs (quote ("/home/art/Build/agda-lib/lib-0.7/src" ".")))
'(blink-cursor-mode nil)
'(c-basic-offset (quote set-from-style))
'(c-default-style
(quote
((c-mode . "linux")
(java-mode . "java")
(awk-mode . "awk")
(other . "gnu"))))
'(c-mode-hook
(quote
((lambda nil
(setq indent-tabs-mode t))
(lambda nil
(setq c-basic-offset 4)))))
'(calendar-week-start-day 1)
'(column-number-mode t)
'(display-time-24hr-format t)
Expand Down

0 comments on commit 208baf8

Please sign in to comment.