-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
48 lines (43 loc) · 1.59 KB
/
init.el
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
(add-to-list 'load-path "~/.emacs.d/init.d")
(require 'init-package-system)
(use-package flycheck
:ensure t
:init (global-flycheck-mode))
(use-package company :ensure t
:init
(setq company-tooltip-align-annotations t)
(setq company-minimum-prefix-length 2)
:config
(setq company-idle-delay 0)
)
(use-package eldoc :ensure t)
(require 'init-display-config)
(require 'init-ediff)
(require 'init-editor)
(require 'init-file)
(require 'init-keyboard)
(require 'init-lang-c)
(require 'init-lang-js)
(require 'init-lang-python)
(require 'init-lang-rust)
(require 'init-lang-scala)
(require 'init-lang-typescript)
(require 'init-lsp)
(require 'init-projectile)
(require 'init-restclient)
(require 'init-session)
(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.
'(delete-selection-mode nil)
'(package-selected-packages
(quote
(fish-mode lsp-metals centaur-tabs material-theme lsp-treemacs company-restclient restclient treemacs-projectile treemacs projectile company-lsp lsp-ui tide sbt-mode scala-mode which-key use-package smex rainbow-delimiters racer magit lsp-rust ignoramus highlight-indent-guides general flycheck-rust flx-ido editorconfig company-tern cargo))))
(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.
)