-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbadri-visual-nicities.el
30 lines (30 loc) · 1 KB
/
badri-visual-nicities.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Visual Nicities
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'color-theme)
(load-library "badri-color-theme")
(global-font-lock-mode 1)
(color-theme-initialize)
(color-theme-badri)
;; ;Show column numbers
;; (column-number-mode 1)
;; (setq-default fill-column 72)
;; (setq auto-fill-mode 1)
;; ;Show what's being selected
;; (transient-mark-mode 1)
;; ;Line by line scrolling
;; (setq scroll-step 1)
;; (setq inhibit-startup-message t)
;; ;Disable the menubar (promotes good emacs memory :)
;; (menu-bar-mode -1)
;; (tool-bar-mode -1)
;; (scroll-bar-mode -1)
;; ;Make page up and page down a whole lot nicer
;; (global-set-key "\C-v" 'pager-page-down)
;; (global-set-key [next] 'pager-page-down)
;; (global-set-key "\ev" 'pager-page-up)
;; (global-set-key [prior] 'pager-page-up)
;; (global-set-key '[M-up] 'pager-row-up)
;; (global-set-key '[M-kp-8] 'pager-row-up)
;; (global-set-key '[M-down] 'pager-row-down)
;; (global-set-key '[M-kp-2] 'pager-row-down)