diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-10-20 06:08:15 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-10-20 06:08:15 +0100 |
commit | 1ecae62342881041269f6bdd3f7332c449df613e (patch) | |
tree | b3fb1b08caf08fe303376739f9db95db991ef492 /Emacs/.config/emacs | |
parent | 04c80df2b77a4bc98c44b075e5cfbc307d23ac94 (diff) | |
download | dotfiles-1ecae62342881041269f6bdd3f7332c449df613e.tar.gz dotfiles-1ecae62342881041269f6bdd3f7332c449df613e.tar.bz2 dotfiles-1ecae62342881041269f6bdd3f7332c449df613e.zip |
(Emacs)~indenting, ~rearrange keybindings
Change to M-c for correcting word bindings in flyspell.
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 0993ba9..7b51361 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -280,8 +280,9 @@ moment), bind to general some basic binds. "SPC" #'execute-extended-command "u" #'universal-argument ";" #'eval-expression + ":" (proc (interactive) (switch-to-buffer "*scratch*")) "!" #'async-shell-command - "q" #'save-buffers-kill-terminal + "q" #'save-buffers-kill-terminal "cF" (proc (interactive) (find-file "~/Code/"))) (leader :infix "f" @@ -1797,8 +1798,8 @@ flyspell-mode should be hooked to text-mode. (general-def :states '(normal motion) :keymaps 'text-mode-map - (kbd "M-a") #'flyspell-correct-word-before-point - (kbd "M-A") #'flyspell-auto-correct-word)) + (kbd "M-C") #'flyspell-correct-word-before-point + (kbd "M-c") #'flyspell-auto-correct-word)) #+end_src *** Undo tree Undo tree is a system for handling the history of any buffer. It |