b287230a23
* Added some emacs config * Vim again for git commits * Added cursorline to vimrc
12 lines
No EOL
252 B
Text
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") |