fix title, add keyboard shortcuts

This commit is contained in:
Grant 2017-10-20 17:01:44 -06:00
parent 3c6996d211
commit 0cdf35dcbc
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;Change title-bar text ;Change title-bar text
(setq frame-title-format (setq frame-title-format
"super-emacs") "%b %F")
;Disable menu-bar ;Disable menu-bar
(menu-bar-mode -1) (menu-bar-mode -1)
@ -18,3 +18,6 @@
;Set font ;Set font
(custom-set-faces (custom-set-faces
'(default ((t (:height 120))))) '(default ((t (:height 120)))))
;line numbers
(linum-mode)

View File

@ -26,6 +26,7 @@
("C-x p" . previous-multiframe-window) ("C-x p" . previous-multiframe-window)
("s--" . text-scale-decrease) ("s--" . text-scale-decrease)
("s-=" . text-scale-increase) ("s-=" . text-scale-increase)
("C-c m" . magit-status)
)) ))
(defun super-emacs-apply-keyboard-bindings (pair) (defun super-emacs-apply-keyboard-bindings (pair)