Skip to content

Commit eb597ca

Browse files
committed
Modify .emacs for Emacs 24
1 parent 14a75dc commit eb597ca

1 file changed

Lines changed: 6 additions & 26 deletions

File tree

Configuration/.emacs

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,14 @@
2222
(global-set-key "\C-m" 'reindent-then-newline-and-indent)
2323
(setq indent-tabs-mode nil)
2424
(setq standard-indent 4)
25-
26-
'(set-default-font "-outline-Courier New-normal-r-normal-normal-12-90-96-96-c-*-iso8859-1")
27-
'(set-default-font "-outline-Envy Code R VS-normal-r-normal-normal-15-112-96-96-c-*-iso8859-1")
28-
'(set-default-font "-outline-Consolas-normal-r-normal-normal-15-112-96-96-c-*-iso8859-1")
29-
'(set-default-font "-outline-Monaco-normal-r-normal-normal-13-97-96-96-c-*-iso8859-1")
30-
'(set-default-font "-outline-Courier New-normal-r-normal-normal-12-90-96-96-c-*-iso8859-1")
3125
(set-default-font "-outline-Consolas-normal-r-normal-normal-15-112-96-96-c-*-iso8859-1")
32-
'(set-default-font "-outline-Lucida Sans Typewriter-normal-r-normal-normal-12-90-96-96-c-*-iso8859-1")
3326

34-
(add-to-list 'load-path (expand-file-name "D:\.emacs.d"))
35-
(require 'color-theme)
36-
(color-theme-initialize)
37-
'(color-theme-gnome2)
38-
'(color-theme-lethe)
39-
'(color-theme-gruber-darker)
27+
(load-theme 'tango-dark)
28+
29+
'(add-to-list 'load-path (expand-file-name "D:\.emacs.d"))
30+
'(require 'color-theme)
31+
'(color-theme-initialize)
32+
4033
(custom-set-variables
4134
;; custom-set-variables was added by Custom.
4235
;; If you edit it by hand, you could mess it up, so be careful.
@@ -65,16 +58,3 @@
6558
(autoload 'python-mode "python-mode" "Major mode for editing Python code." t)
6659
(setq auto-mode-alist
6760
(append '(("\\.py$" . python-mode)) auto-mode-alist))
68-
69-
'Tabbar
70-
(require 'tabbar)
71-
(tabbar-mode)
72-
(define-prefix-command 'lwindow-map)
73-
(global-set-key (kbd "<M-up>") 'tabbar-backward-group)
74-
(global-set-key (kbd "<M-down>") 'tabbar-forward-group)
75-
(global-set-key (kbd "<M-left>") 'tabbar-backward)
76-
(global-set-key (kbd "<M-right>") 'tabbar-forward)
77-
78-
(custom-set-variables
79-
'(speedbar-show-unknown-files t)
80-
)

0 commit comments

Comments
 (0)