-
Notifications
You must be signed in to change notification settings - Fork 1
/
.emacs
63 lines (55 loc) · 2.1 KB
/
.emacs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;;; begin adding paths
(add-to-list 'load-path "~/.emacs.d/byte-code-cache")
(add-to-list 'load-path "~/.emacs.d/config")
(add-to-list 'load-path "~/.emacs.d/themes")
(add-to-list 'load-path "~/.emacs.d/scala-mode")
(add-to-list 'load-path "~/.emacs.d/fixme-mode")
(add-to-list 'load-path "~/.emacs.d/iedit-mode")
(add-to-list 'load-path "~/.emacs.d/fill-column-indicator")
(add-to-list 'load-path "~/.emacs.d/goto-chg")
;(add-to-list 'load-path "~/.emacs.d/column-marker")
;;;;end adding paths
;;;; begin require statements
(require 'byte-code-cache) ;; everything after this is compiled on load
(require 'load-usr-config)
(require 'color-theme-tangotango)
; (require 'color-theme-zenburn) ;; back-up theme
; (require 'scala-mode-auto)
(require 'fill-column-indicator)
(require 'fixme-mode) ;; NOTE when a new mode is added, need to edit fixme-mode.el
(require 'browse-kill-ring) ;; provided with emacs-goodies.el
(require 'iedit)
(require 'goto-chg)
;;;; end require statements
;;begin loading customizations
(load-usr-config) ;;contains text that is typically in .emacs
;;end loading customizations
;; begin color theme
(color-theme-tangotango)
;(color-theme-zenburn)
;; end color theme
;;;; begin ECB customizations
;; kept separate from other customization
;; blocks
;;;; end ECB customizations
;;;; begin defaults for custom-sets
;; note that these are already reflected
;; in setq at the beginning of the init
;; file
;(custom-set-variables
; '(column-number-mode t)
; '(inhibit-startup-screen t)
; '(scroll-bar-mode nil)
; '(show-paren-mode t))
;;;; end defaults for custom-sets
;;;; begin default face
;; used when color-theme is not used
;(custom-set-faces
; '(default ((t (:inherit nil :stipple nil :background "gray2"
; :foreground "white" :inverse-video nil
; :box nil :strike-through nil :overline nil
; :underline nil :slant normal :weight normal
; :height 80 :width normal :foundry "unknown"
; :family "Monospace"))))
; '(linum ((t (:background "gray10" :foreground "white")))))
;;;; end default face