https://github.com/N-BodyShop/changa
Raw File
Tip revision: e693f73d720c81bb585b53fd250fe92145583d04 authored by Tom Quinn on 19 June 2018, 20:54:33 UTC
Check GPU kernel launches.
Tip revision: e693f73
.emacs
(setq-default c-basic-offset 4)
(defun my-c-mode-common-hook ()
       ;; my customizations for all of c-mode, c++-mode, objc-mode, java-mode
       ;  JST's style
  	(setq c-basic-offset 4)
       (c-set-offset 'block-close '+)
       (c-set-offset 'defun-close '+)
       (c-set-offset 'class-close '+)
       (auto-fill-mode 1)
       (hilit-highlight-buffer)
       )
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)
back to top