1
0
Fork 0

feat(emacs): add new packages

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-11-09 21:13:54 -05:00
parent 73ad372077
commit 215b1ea722
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
2 changed files with 8 additions and 0 deletions

View file

@ -45,6 +45,7 @@
(blink-cursor-mode 1)
;; Font
(add-to-list 'default-frame-alist '(font . "JetBrains Mono SemiBold-10"))
(defvar font-size 10)
(defvar font-family "JetBrains Mono SemiBold")
(set-frame-font (format "%s %d" font-family font-size))
@ -110,6 +111,9 @@
;; Confirmations
(fset 'yes-or-no-p 'y-or-n-p)
;; Disable suspend state
(global-unset-key (kbd "C-z"))
(global-unset-key (kbd "C-x C-z"))
(provide 'general)
;;; general.el ends here