X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/cd2776993118afcb19c34e4c86f3100a9a506147..ba71f50c82c6032adbff2c9ea9f8503424a112c5:/init.org?ds=sidebyside diff --git a/init.org b/init.org index 9ae1276..55874eb 100644 --- a/init.org +++ b/init.org @@ -762,7 +762,8 @@ Some bindings for functions from built-in GNU Emacs packages: ("C-S-h C" . describe-char) ("C-S-h F" . describe-face) - ("C-x K" . kill-this-buffer) + ("C-x k" . kill-this-buffer) + ("C-x K" . kill-buffer) ("s-p" . beginning-of-buffer) ("s-n" . end-of-buffer)) @@ -1169,6 +1170,7 @@ There's no way I could top that, so I won't attempt to. (mode . python-mode) (mode . c-mode) (mode . c++-mode) + (mode . java-mode) (mode . emacs-lisp-mode) (mode . scheme-mode) (mode . haskell-mode) @@ -2209,8 +2211,11 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. (use-package yasnippet :defer 3 :config + (defconst yas-verbosity-cur yas-verbosity) + (setq yas-verbosity 2) (add-to-list 'yas-snippet-dirs "~/src/git/guix/etc/snippets") (yas-reload-all) + (setq yas-verbosity yas-verbosity-cur) :hook (text-mode . yas-minor-mode)) #+end_src