Started working on config for emacs

This commit is contained in:
2023-03-24 21:06:41 +00:00
commit 3389e10dd0
3 changed files with 176 additions and 0 deletions

34
init.el Normal file
View File

@@ -0,0 +1,34 @@
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
; always follow symlinks
; (setq vc-follow-symlinks t)
; (org-babel-tangle-file "~/.emacs.d/settings.org")
(org-babel-do-load-languages 'org-babel-load-languages '((emacs-list . nil)))
(org-babel-load-file "~/.emacs.d/settings.org")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("bfc0b9c3de0382e452a878a1fb4726e1302bf9da20e69d6ec1cd1d5d82f61e3d" default))
'(package-selected-packages '(evil-mode)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)