Ubuntu Pastebin

Paste from 11 at Thu, 2 Apr 2015 06:47:09 +0000

Download as text
1
2
3
4
5
6
7
8
9
(defun txc-c-mode-hook ()
  (setq indent-tabs-mode t)
  (setq c-basic-offset 8)
  (setq tab-width 8)
  (setq c-set-style "K&R")
  )

(add-hook 'c-mode-hook 'txc-c-mode-hook)
(add-hook 'cc-mode-hook 'txc-c-mode-hook)
Download as text