1
0
Fork 0

fix: set gc, convenience confirmations, fill col keybinds

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-08-16 23:37:06 -07:00
parent 320a1b215a
commit 2715abe4a3
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -67,6 +67,14 @@
;; Keybindings
(global-set-key (kbd "C-M-j") (lambda () (interactive) (scroll-up 1)))
(global-set-key (kbd "C-M-k") (lambda () (interactive) (scroll-down 1)))
(global-set-key (kbd "C-x f f") #'set-fill-column)
(global-set-key (kbd "C-x f i") #'display-fill-column-indicator-mode)
;; Garbage Collection
(setq gc-cons-threshold 50000000)
;; Confirmations
(fset 'yes-or-no-p 'y-or-n-p)
(provide 'general)