|
7 | 7 | ;; Turn off the menu bar at the top of each frame because it's distracting
|
8 | 8 | (menu-bar-mode -1)
|
9 | 9 |
|
| 10 | +;; Show line numbers |
| 11 | +(global-linum-mode) |
| 12 | + |
10 | 13 | ;; You can uncomment this to remove the graphical toolbar at the top. After
|
11 | 14 | ;; awhile, you won't need the toolbar.
|
12 |
| -(when (fboundp 'tool-bar-mode) |
13 |
| - (tool-bar-mode -1)) |
| 15 | +;; (when (fboundp 'tool-bar-mode) |
| 16 | +;; (tool-bar-mode -1)) |
14 | 17 |
|
15 | 18 | ;; Don't show native OS scroll bars for buffers because they're redundant
|
16 | 19 | (when (fboundp 'scroll-bar-mode)
|
|
25 | 28 | (add-to-list 'load-path "~/.emacs.d/themes")
|
26 | 29 | (load-theme 'tomorrow-night-bright t)
|
27 | 30 |
|
28 |
| -;; powerline customizes the mode line |
29 |
| -(add-to-list 'load-path "~/.emacs.d/vendor/emacs-powerline") |
30 |
| -(require 'powerline) |
31 |
| -(custom-set-faces |
32 |
| - '(mode-line ((t (:foreground "#333" :background "#bad063" :box nil)))) |
33 |
| - ;'(mode-line-inactive ((t (:foreground "#f9f9f9" :background "#666666" :box nil)))) |
34 |
| - ) |
35 |
| - |
36 | 31 | ;; increase font size for better readability
|
37 | 32 | (set-face-attribute 'default nil :height 140)
|
38 | 33 |
|
39 | 34 | ;; Uncomment the lines below by removing semicolons and play with the
|
40 | 35 | ;; values in order to set the width (in characters wide) and height
|
41 | 36 | ;; (in lines high) Emacs will have whenever you start it
|
42 |
| -(if (or (equal system-name "DH.local") |
43 |
| - (equal system-name "waffles")) |
44 |
| - (setq initial-frame-alist '((top . 0) (left . 0) |
45 |
| - (width . 177) (height . 47))) |
46 |
| - (setq initial-frame-alist '((top . 0) (left . 0) |
47 |
| - (width . 177) (height . 53)))) |
| 37 | +;; (setq initial-frame-alist '((top . 0) (left . 0) |
| 38 | +;; (width . 177) (height . 53))) |
48 | 39 |
|
49 | 40 | ;; These settings relate to how emacs interacts with your operating system
|
50 | 41 | (setq ;; makes killing/yanking interact with the clipboard
|
|
0 commit comments