-
Notifications
You must be signed in to change notification settings - Fork 0
/
.emacs
39 lines (37 loc) · 1.52 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
;; emacs configulation by invi.
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(column-number-mode t)
'(comint-buffer-maximum-size 100000)
'(comint-completion-addsuffix t)
'(comint-get-old-input (lambda nil "") t)
'(comint-input-ignoredups t)
'(comint-input-ring-size 5000)
'(comint-move-point-for-output nil)
'(comint-prompt-read-only nil)
'(comint-scroll-show-maximum-output t)
'(comint-scroll-to-bottom-on-input t)
'(cua-mode t nil (cua-base))
'(debug-on-quit t)
'(display-battery-mode t)
'(display-time-mode t)
'(ecb-options-version "2.40")
'(protect-buffer-bury-p nil)
'(save-place t nil (saveplace))
'(show-paren-mode t)
'(size-indication-mode t)
'(tool-bar-mode nil)
'(tramp-default-method "ssh"))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "SystemWindow" :foreground "SystemWindowText" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "outline" :family "Consolas")))))
; initialization of dotemacs for emacs
(add-to-list 'load-path "~/.emacs.d")
(require 'edotset)
(edotset-initialize)