Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
3.2 KiB

11 years ago
12 years ago
  1. ;;; prelude-modules.el --- A listing of modules to load on startup
  2. ;;
  3. ;; Copyright © 2011-2020 Bozhidar Batsov
  4. ;;
  5. ;; Author: Bozhidar Batsov <bozhidar@batsov.com>
  6. ;; URL: https://github.com/bbatsov/prelude
  7. ;; This file is not part of GNU Emacs.
  8. ;;; Commentary:
  9. ;; This file is just a list of Prelude modules to load on startup.
  10. ;; For convenience the modules are grouped in several categories.
  11. ;; The prelude-modules.el in the samples folder should be copied
  12. ;; to your personal folder and edited there.
  13. ;; Note that some modules can't be used together - e.g. you shouldn't
  14. ;; enable both prelude-ido and prelude-ivy, as they serve the same
  15. ;; purpose.
  16. ;;; License:
  17. ;; This program is free software; you can redistribute it and/or
  18. ;; modify it under the terms of the GNU General Public License
  19. ;; as published by the Free Software Foundation; either version 3
  20. ;; of the License, or (at your option) any later version.
  21. ;;
  22. ;; This program is distributed in the hope that it will be useful,
  23. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. ;; GNU General Public License for more details.
  26. ;;
  27. ;; You should have received a copy of the GNU General Public License
  28. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  29. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  30. ;; Boston, MA 02110-1301, USA.
  31. ;;; Code:
  32. ;;; Uncomment the modules you'd like to use and restart Prelude afterwards
  33. ;;; General productivity tools
  34. ;; (require 'prelude-ido) ;; Supercharges Emacs completion for C-x C-f and more
  35. (require 'prelude-ivy) ;; A mighty modern alternative to ido
  36. ;; (require 'prelude-helm) ;; Interface for narrowing and search
  37. ;; (require 'prelude-helm-everywhere) ;; Enable Helm everywhere
  38. (require 'prelude-company)
  39. ;; (require 'prelude-key-chord) ;; Binds useful features to key combinations
  40. ;;; Vim emulation
  41. ;;
  42. ;; Enable this module if you're fond of vim's keybindings.
  43. ;; (require 'prelude-evil)
  44. ;;; Org-mode (a legendary productivity tool that deserves its own category)
  45. ;;
  46. ;; Org-mode helps you keep TODO lists, notes and more.
  47. (require 'prelude-org)
  48. ;;; Programming languages support
  49. ;;
  50. ;; Modules for a few very common programming languages
  51. ;; are enabled by default.
  52. (require 'prelude-c)
  53. ;; (require 'prelude-clojure)
  54. ;; (require 'prelude-coffee)
  55. ;; (require 'prelude-common-lisp)
  56. (require 'prelude-css)
  57. ;; (require 'prelude-dart)
  58. (require 'prelude-emacs-lisp)
  59. ;; (require 'prelude-erlang)
  60. ;; (require 'prelude-elixir)
  61. ;; (require 'prelude-go)
  62. ;; (require 'prelude-haskell)
  63. (require 'prelude-js)
  64. ;; (require 'prelude-latex)
  65. (require 'prelude-lisp) ;; Common setup for Lisp-like languages
  66. (require 'prelude-lsp) ;; Base setup for the Language Server Protocol
  67. ;; (require 'prelude-ocaml)
  68. (require 'prelude-perl)
  69. ;; (require 'prelude-python)
  70. ;; (require 'prelude-ruby)
  71. ;; (require 'prelude-rust)
  72. ;; (require 'prelude-scala)
  73. ;; (require 'prelude-scheme)
  74. (require 'prelude-shell)
  75. ;; (require 'prelude-scss)
  76. ;; (require 'prelude-ts)
  77. (require 'prelude-web) ;; Emacs mode for web templates
  78. (require 'prelude-xml)
  79. (require 'prelude-yaml)
  80. ;;; Misc
  81. (require 'prelude-erc) ;; A popular Emacs IRC client (useful if you're still into Freenode)
  82. (provide 'prelude-modules)
  83. ;;; prelude-modules.el ends here