remove the stupid backup thingy in emacs

This commit is contained in:
Sakooooo 2023-10-27 19:08:11 +04:00 committed by GitHub
parent b1481a0300
commit 36a1c6e7ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,6 +58,16 @@ M-x org-bable-tangle
;; repeat keybinds
(repeat-mode)
#+end_src
* Move backup (filename~.ending) files
#+begin_src emacs-lisp
(setq backup-directory-alist '(("." . "~/.emacs.d/backup"))
backup-by-copying t ; Don't delink hardlinks
version-control t ; Use version numbers on backups
delete-old-versions t ; Automatically delete excess backups
kept-new-versions 20 ; how many of the newest versions to keep
kept-old-versions 5 ; and how many of the old
)
#+end_src
* Fonts
#+begin_src emacs-lisp
(set-face-attribute `default nil :font "JetBrains Mono" :height 125)