Some stuff

This commit is contained in:
Alexander Rosenberg 2024-01-10 03:58:02 -08:00
parent f37bc7309c
commit 8f020ea02e
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -67,6 +67,10 @@
;; Enable all disabled stuff ;; Enable all disabled stuff
(setq disabled-command-function nil) (setq disabled-command-function nil)
;; Stop some annoying stuff
(setq extended-command-suggest-shorter nil
suggest-key-bindings nil)
;; Better scrolling ;; Better scrolling
(setq mouse-scroll-delay 0 (setq mouse-scroll-delay 0
scroll-conservatively 10 scroll-conservatively 10
@ -670,7 +674,9 @@ COMMAND and COMINT are like `compile'."
(use-package rust-mode) (use-package rust-mode)
(use-package rust-ts-mode (use-package rust-ts-mode
:ensure nil :ensure nil
:hook (rust-ts-mode . eglot-ensure)) :hook (rust-ts-mode . eglot-ensure)
:bind (:map rust-ts-mode-map
("C-c d" . realgud:gdb)))
;; markdown ;; markdown
(use-package markdown-mode (use-package markdown-mode