2013-07-08 16:54:54 +02:00
|
|
|
;; Font size
|
|
|
|
(define-key global-map (kbd "C-+") 'text-scale-increase)
|
|
|
|
(define-key global-map (kbd "C--") 'text-scale-decrease)
|
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; What does <tab> do? Well, it depends ...
|
|
|
|
(define-key prog-mode-map (kbd "<tab>") #'company-indent-or-complete-common)
|
2013-07-08 16:54:54 +02:00
|
|
|
|
2018-05-06 21:44:48 +02:00
|
|
|
;; Counsel stuff:
|
|
|
|
(global-set-key (kbd "C-c r g") 'counsel-rg)
|
|
|
|
|
2018-02-22 23:25:57 +01:00
|
|
|
;; imenu instead of insert-file
|
|
|
|
(global-set-key (kbd "C-x i") 'imenu)
|
|
|
|
|
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.
|
2018-06-18 16:39:28 +02:00
|
|
|
(global-set-key (kbd "C-x p") 'ivy-browse-repositories)
|
2015-03-11 14:42:58 +01:00
|
|
|
(global-set-key (kbd "M-g M-g") 'goto-line-with-feedback)
|
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; Miscellaneous editing commands
|
2015-03-11 14:42:58 +01:00
|
|
|
(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)
|
2019-12-15 18:09:52 +01:00
|
|
|
(global-set-key (kbd "C-c m") 'mc/mark-dwim)
|
2018-03-09 11:09:45 +01:00
|
|
|
|
|
|
|
;; 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
|
|
|
|
2019-12-14 16:59:20 +01:00
|
|
|
;; C-x REALLY QUIT (idea by @magnars)
|
2013-08-07 00:49:20 +02:00
|
|
|
(global-set-key (kbd "C-x r q") 'save-buffers-kill-terminal)
|
|
|
|
|
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)
|