Fix org-mode shift-arrow keys and add cmake support.

This commit is contained in:
Tom Alexander
2025-02-24 12:17:32 -05:00
parent 515e910487
commit d9150880d3
5 changed files with 52 additions and 14 deletions

View File

@@ -51,6 +51,7 @@
;; Persist history over Emacs restarts. Vertico sorts by history position.
(use-package savehist
;; This is an emacs built-in but we're pulling the latest version
:pin gnu
:config
(savehist-mode))
@@ -60,8 +61,16 @@
(which-key-mode))
(use-package windmove
:config
(windmove-default-keybindings))
;; This is an emacs built-in but we're pulling the latest version
:pin gnu
:bind
(
("S-<up>" . windmove-up)
("S-<right>" . windmove-right)
("S-<down>" . windmove-down)
("S-<left>" . windmove-left)
)
)
(setq tramp-default-method "ssh")