This commit is contained in:
2025-06-09 15:54:13 +03:00
committed by Emin Arslan
commit f89458b056
3 changed files with 26 additions and 0 deletions

8
emacs-init Normal file
View File

@ -0,0 +1,8 @@
;; Require Emacs' package functionality
(require 'package)
;; Add the Melpa repository to the list of package sources
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
;; Initialise the package system.
(package-initialize)