Skip to content

Instantly share code, notes, and snippets.

View srgtuszy's full-sized avatar

Michał Tuszyński srgtuszy

View GitHub Profile
@srgtuszy
srgtuszy / .emacs
Created June 28, 2013 07:57 — forked from anonymous/.emacs
(add-to-list 'load-path "~/.emacs.d")
(require 'cc-mode)
(require 'autopair)
(autopair-global-mode)
(define-key c-mode-base-map (kbd "RET") 'newline-and-indent)
(global-linum-mode t)
(setq-default c-basic-offset 4
tab-width 8
indent-tabs-mode t)