-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
76 lines (44 loc) · 2.27 KB
/
init.el
File metadata and controls
76 lines (44 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
(setq frame-inhibit-implied-resize t)
(defvar efs/default-font-size 180)
(defvar efs/default-variable-font-size 180)
(require 'package)
; (setq package-enable-at-startup nil)
; (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/") t)
; (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
; (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
; (package-initialize)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("gnu" . "https://elpa.gnu.org/packages/")))
; use-package
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
(unless(package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
(setq use-package-always-ensure t)
; (defconst banner-title "E M A C S")
; (put 'dired-find-alternate-file 'disabled nil)
; (put 'set-goal-column 'disabled nil)
; (put 'narrow-to-region 'disabled nil)
(setq visible-bell "visual")
; (org-babel-load-file (expand-file-name "~/.emacs.d/newconfig.org"))
(org-babel-load-file (expand-file-name "~/.emacs.d/config.org"))
(use-package highlight-indentation
:commands highlight-indentation-mode)
(use-package evil :ensure t)
(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.
'(package-selected-packages
'(which-key websocket treemacs-tab-bar treemacs-projectile treemacs-persp treemacs-evil smartparens simple-httpd rainbow-delimiters python-mode posframe pdf-tools no-littering magit-section lsp-ui lsp-treemacs julia-snail highlight-indentation gruber-darker-theme flycheck evil-collection elfeed elcord doom-themes doom-modeline-now-playing dired-sidebar dired-open default-text-scale dashboard counsel company auto-package-update auctex all-the-icons)))
(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.
)