diff options
Diffstat (limited to '.emacs.d/keybinds.el')
| -rw-r--r-- | .emacs.d/keybinds.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.emacs.d/keybinds.el b/.emacs.d/keybinds.el new file mode 100644 index 0000000..e0fa2ed --- /dev/null +++ b/.emacs.d/keybinds.el @@ -0,0 +1,14 @@ +;; Control X +(global-set-key (kbd "C-x 2") 'split-and-follow-horizontally) +(global-set-key (kbd "C-x 3") 'split-and-follow-vertically) + +;; Super +(global-set-key (kbd "s-C-<left>") 'shrink-window-horizontally) +(global-set-key (kbd "s-C-<right>") 'enlarge-window-horizontally) +(global-set-key (kbd "s-C-<down>") 'shrink-window) +(global-set-key (kbd "s-C-<up>") 'enlarge-window) +(global-set-key (kbd "<s-C-return>") 'eshell-other-window) + +;; Control C +(global-set-key (kbd "C-c r") 'recentf-open-files) +(global-set-key (kbd "C-c t") 'toggle-transparency) |
