xeno/emacs
Stefan Ritter b287230a23 Several things:
* Added some emacs config
* Vim again for git commits
* Added cursorline to vimrc
2009-10-21 16:32:41 +02:00

12 lines
No EOL
252 B
Text

;; line numbers
(require 'linum)
(global-linum-mode)
(setq linum-format "%d ")
;; no backup and autosave files
(setq make-backup-files nil)
(setq backup-inhibited t)
;; hilight actual line
(global-hl-line-mode 1)
(set-face-background 'hl-line "#333")