2013-07-08 16:54:54 +02:00
|
|
|
;; Various keybindings, most of them taken from starter-kit-bindings
|
|
|
|
|
|
|
|
;; Font size
|
|
|
|
(define-key global-map (kbd "C-+") 'text-scale-increase)
|
|
|
|
(define-key global-map (kbd "C--") 'text-scale-decrease)
|
|
|
|
|
|
|
|
;; Use regex searches by default.
|
|
|
|
(global-set-key (kbd "\C-r") 'isearch-backward-regexp)
|
|
|
|
(global-set-key (kbd "M-%") 'query-replace-regexp)
|
|
|
|
(global-set-key (kbd "C-M-s") 'isearch-forward)
|
|
|
|
(global-set-key (kbd "C-M-r") 'isearch-backward)
|
|
|
|
(global-set-key (kbd "C-M-%") 'query-replace)
|
|
|
|
|
2018-05-06 21:44:48 +02:00
|
|
|
;; Counsel stuff:
|
|
|
|
(global-set-key (kbd "C-c r g") 'counsel-rg)
|
|
|
|
|
2018-01-25 13:22:21 +01:00
|
|
|
;; Avy mode
|
|
|
|
(global-set-key (kbd "M-j") 'avy-goto-char)
|
|
|
|
(global-set-key (kbd "M-p") 'avy-pop-mark)
|
2013-07-15 01:06:32 +02:00
|
|
|
|
2018-02-22 23:25:57 +01:00
|
|
|
;; imenu instead of insert-file
|
|
|
|
(global-set-key (kbd "C-x i") 'imenu)
|
|
|
|
|
2017-11-15 18:56:23 +01:00
|
|
|
(global-set-key (kbd "C-x o") ; Yes, I went there!
|
|
|
|
'ace-window)
|
|
|
|
|
2013-07-08 16:54:54 +02:00
|
|
|
;; Window switching. (C-x o goes to the next window)
|
|
|
|
(windmove-default-keybindings) ;; Shift+direction
|
|
|
|
|
|
|
|
;; Start eshell or switch to it if it's active.
|
|
|
|
(global-set-key (kbd "C-x m") 'eshell)
|
|
|
|
|
|
|
|
;; Start a new eshell even if one is active.
|
|
|
|
(global-set-key (kbd "C-x M") (lambda () (interactive) (eshell t)))
|
|
|
|
|
2017-11-12 20:24:21 +01:00
|
|
|
;; Magit!
|
2013-07-08 16:54:54 +02:00
|
|
|
(global-set-key (kbd "C-c g") 'magit-status)
|
|
|
|
|
2015-02-20 11:45:37 +01:00
|
|
|
;; Replace standard goto-line with ace-jump-line-mode
|
|
|
|
(global-set-key (kbd "M-g g") 'ace-jump-line-mode)
|
2015-03-11 14:42:58 +01:00
|
|
|
(global-set-key (kbd "M-g M-g") 'goto-line-with-feedback)
|
|
|
|
|
|
|
|
(global-set-key (kbd "C-c w") 'whitespace-cleanup)
|
2018-03-09 11:09:45 +01:00
|
|
|
(global-set-key (kbd "C-c a") 'align-regexp)
|
|
|
|
|
|
|
|
;; Browse URLs (very useful for Gitlab's SSH output!)
|
|
|
|
(global-set-key (kbd "C-c b p") 'browse-url-at-point)
|
|
|
|
(global-set-key (kbd "C-c b b") 'browse-url)
|
2013-08-07 00:49:20 +02:00
|
|
|
|
|
|
|
;; Goodness from @magnars
|
|
|
|
;; I don't need to kill emacs that easily
|
|
|
|
;; the mnemonic is C-x REALLY QUIT
|
|
|
|
(global-set-key (kbd "C-x r q") 'save-buffers-kill-terminal)
|
|
|
|
(global-set-key (kbd "C-x C-c") 'delete-frame)
|
|
|
|
|
2015-03-11 14:42:58 +01:00
|
|
|
;; Open Fefes Blog
|
|
|
|
(global-set-key (kbd "C-c C-f") 'fefes-blog)
|
|
|
|
|
2018-03-30 12:16:00 +02:00
|
|
|
;; Open a file in project:
|
|
|
|
(global-set-key (kbd "C-c f") 'project-find-file)
|
|
|
|
|
2018-05-01 16:01:38 +02:00
|
|
|
;; Use swiper instead of isearch
|
|
|
|
(global-set-key "\C-s" 'swiper)
|
2018-03-30 12:16:00 +02:00
|
|
|
|
2014-10-21 19:37:19 +02:00
|
|
|
(provide 'bindings)
|