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.

103 lines
3.4 KiB

11 years ago
12 years ago
  1. ;;; prelude-modules.el --- A listing of modules to load on startup
  2. ;;
  3. ;; Copyright © 2011-2021 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-selectrum) ;; A powerful, yet simple, alternative to ivy
  37. ;; (require 'prelude-helm) ;; Interface for narrowing and search
  38. ;; (require 'prelude-helm-everywhere) ;; Enable Helm everywhere
  39. (require 'prelude-company)
  40. ;; (require 'prelude-key-chord) ;; Binds useful features to key combinations
  41. ;;; Vim emulation
  42. ;;
  43. ;; Enable this module if you're fond of vim's keybindings.
  44. ;; (require 'prelude-evil)
  45. ;;; Org-mode (a legendary productivity tool that deserves its own category)
  46. ;;
  47. ;; Org-mode helps you keep TODO lists, notes and more.
  48. (require 'prelude-org)
  49. ;;; Programming languages support
  50. ;;
  51. ;; Modules for a few very common programming languages
  52. ;; are enabled by default.
  53. (require 'prelude-c)
  54. ;; (require 'prelude-clojure)
  55. ;; (require 'prelude-coffee)
  56. ;; (require 'prelude-common-lisp)
  57. (require 'prelude-css)
  58. ;; (require 'prelude-dart)
  59. (require 'prelude-emacs-lisp)
  60. ;; (require 'prelude-erlang)
  61. ;; (require 'prelude-elixir)
  62. ;; (require 'prelude-fsharp)
  63. ;; (require 'prelude-go)
  64. ;; (require 'prelude-haskell)
  65. (require 'prelude-js)
  66. ;; (require 'prelude-latex)
  67. (require 'prelude-lisp) ;; Common setup for Lisp-like languages
  68. (require 'prelude-lsp) ;; Base setup for the Language Server Protocol
  69. ;; (require 'prelude-lua)
  70. ;; (require 'prelude-ocaml)
  71. (require 'prelude-perl)
  72. ;; (require 'prelude-python)
  73. ;; (require 'prelude-racket)
  74. ;; (require 'prelude-ruby)
  75. ;; (require 'prelude-rust)
  76. ;; (require 'prelude-scala)
  77. ;; (require 'prelude-scheme)
  78. (require 'prelude-shell)
  79. ;; (require 'prelude-scss)
  80. ;; (require 'prelude-ts)
  81. (require 'prelude-web) ;; Emacs mode for web templates
  82. (require 'prelude-xml)
  83. (require 'prelude-yaml)
  84. ;;; Misc
  85. (require 'prelude-erc) ;; A popular Emacs IRC client (useful if you're still into Freenode)
  86. (provide 'prelude-modules)
  87. ;;; prelude-modules.el ends here