Emacs: Skillnad mellan sidversioner
Från Täpp-Anders
Hoppa till navigeringHoppa till sök
Anders (diskussion | bidrag) Ingen redigeringssammanfattning |
Anders (diskussion | bidrag) |
||
| (En mellanliggande sidversion av samma användare visas inte) | |||
| Rad 20: | Rad 20: | ||
(custom-set-faces) ;; Enable wanted face | (custom-set-faces) ;; Enable wanted face | ||
;; Allow tex input for Unicode characters | |||
(set-input-method "TeX") | |||
</pre> | </pre> | ||
[[category:konfigurationsfil]] | |||
[[category:programvara]] | |||
[[category:linux]] | |||
Nuvarande version från 10 april 2026 kl. 08.41
Configuration
.emacs
;; Custom settings
(custom-set-variables
;; Setting the theme I line
'(custom-enabled-themes '(wheatgrass))
;; Removing splash screen and scratch pad on open
'(inhibit-startup-message t)
'(initial-scratch-message nil)
;; Move all emacs backup files to one and the same directory
;; avoiding file system clutter and problematic behaviour when
;; editing certain folders such as /etc/rc.d/ and similar
'(backup-directory-alist '(("." . "~/.emacs.d/backup-dir"))))
(custom-set-faces) ;; Enable wanted face
;; Allow tex input for Unicode characters
(set-input-method "TeX")