summaryrefslogtreecommitdiffstats
path: root/emacs
blob: f67c4b25ea343cf49465abc11c995cd93016c061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; 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)
(setq auto-save-default nil)

;; hilight actual line
(global-hl-line-mode 1)
(set-face-background 'hl-line "#333")

;; show line- and columnnumber
(line-number-mode 1)
(column-number-mode 1)