-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgoblin-modules.el
58 lines (46 loc) · 1.79 KB
/
goblin-modules.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
49
50
51
52
53
54
55
56
57
58
;;; goblin-modules.el
;;; Copyright © 2014 jqlblue <[email protected]>
;;; URL: https://github.com/jqlblue/goblin-emacs
;;; Commentary:
;; The package is fork from http://batsov.com/prelude/, enhance in web development.
;;; License:
;; This library is free software; you can redistribute it and/or
;; modify it under the terms of the GNU Lesser General Public
;; License as published by the Free Software Foundation; either
;; version 2.1 of the License, or (at your option) any later version.
;;
;; This library is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; Lesser General Public License for more details.
;;
;; You should have received a copy of the GNU Lesser General Public
;; License along with this library; if not, write to the Free Software
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
;; 02110-1301 USA
;; (require 'goblin-helm)
;; (require 'goblin-helm-everywhere)
;; (require 'goblin-auto-complete)
;; (require 'goblin-php)
;; (require 'goblin-web)
;; (require 'goblin-python)
;; (require 'goblin-flymake)
;; (require 'goblin-doxymacs)
;; (require 'goblin-vc)
;; (require 'goblin-org-mode)
;; (require 'goblin-rust)
;; (require 'goblin-go)
;; (load "goblin-slime")
;; (require 'goblin-vertico) ;; A powerful, yet simple, alternative to ivy
(require 'goblin-helm) ;; Interface for narrowing and search
(require 'goblin-helm-everywhere) ;; Enable Helm everywhere
;; (require 'goblin-company)
;; (require 'goblin-dired)
(require 'goblin-lsp)
;; (require 'goblin-php)
;; (require 'goblin-eglot)
;; (require 'goblin-flutter)
(require 'goblin-magit)
;; (require 'goblin-projectile)
(provide 'goblin-modules)
;;; goblin-modules.el ends here