Minor fixes
This commit is contained in:
parent
299b2eef9d
commit
0350f6b201
6
init.el
6
init.el
@ -96,13 +96,15 @@
|
||||
;; Load modules.
|
||||
;; --------------------------------------------------------------------------
|
||||
|
||||
(init-packages/init '(editing
|
||||
(init-packages/init '(
|
||||
editing
|
||||
emacs
|
||||
helm
|
||||
parentheses
|
||||
programming
|
||||
version-control
|
||||
workflow))
|
||||
workflow
|
||||
))
|
||||
|
||||
|
||||
;; *********************************************************************** ;;
|
||||
|
@ -62,7 +62,7 @@
|
||||
;; Key-bindings -------------------------------------------------------------
|
||||
|
||||
;; Kill other window (cyclic order).
|
||||
(global-set-key (kbd "C-x C-q") 'quit-other-window)
|
||||
(global-set-key (kbd "C-z") 'quit-other-window)
|
||||
|
||||
;; Kill current buffer without prompting.
|
||||
(global-set-key (kbd "C-x k") 'kill-default-buffer)
|
||||
@ -116,7 +116,7 @@
|
||||
" "
|
||||
(mode 16 16 :left :elide)
|
||||
" "
|
||||
(vc-(setq )tatus 16 16 :left)
|
||||
(vc-status 16 16 :left)
|
||||
" "
|
||||
filename-and-process))))
|
||||
|
||||
|
@ -90,11 +90,14 @@
|
||||
|
||||
;; Key-bindings -------------------------------------------------------------
|
||||
|
||||
(use-package diff-mode
|
||||
:config
|
||||
|
||||
;; This shadows new global key-binding for other-window.
|
||||
(define-key diff-mode-map (kbd "M-o") nil)
|
||||
|
||||
;; This copies behaviour from other modes where C-o displays the relevant
|
||||
;; source in another window.
|
||||
(define-key diff-mode-map (kbd "C-o") 'x-diff-display-source)
|
||||
;; (setq )ource in another window.
|
||||
(define-key diff-mode-map (kbd "C-o") 'x-diff-display-source))
|
||||
|
||||
)
|
||||
|
Reference in New Issue
Block a user