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.

124 lines
4.4 KiB

12 years ago
12 years ago
13 years ago
14 years ago
14 years ago
8 years ago
12 years ago
  1. [![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)
  2. [![Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://www.patreon.com/bbatsov)
  3. Emacs Prelude
  4. =============
  5. Prelude is an Emacs distribution that aims to enhance the default
  6. Emacs experience. Prelude alters a lot of the default settings,
  7. bundles a plethora of additional packages and adds its own core
  8. library to the mix. The final product offers an easy to use Emacs
  9. configuration for Emacs newcomers and lots of additional power for
  10. Emacs power users.
  11. Prelude is compatible **ONLY with GNU Emacs 25.1+**. In general you're
  12. advised to always run Prelude with the latest stable Emacs release.
  13. You can support the development of Prelude via
  14. [GitHub Sponsors](https://github.com/sponsors/bbatsov),
  15. [PayPal](https://www.paypal.me/bbatsov) and
  16. [Patreon](https://www.patreon.com/bbatsov).
  17. ## Features
  18. * Improved UX, that's still in line with Emacs traditions
  19. * Sane defaults of baseline Emacs functionality
  20. * Automatic installation of many major programming modes on demand
  21. * A curated set of 3rd party packages to enhance the base functionality
  22. * Simple modular architecture
  23. * Easy customization
  24. ## Fast Forward
  25. Assuming you're using an Unix-like OS (`*BSD`, `GNU/Linux`, `macOS`, `Solaris`,
  26. etc), you already have a recent version of Emacs installed, as well as `git` & `curl` you
  27. can skip the whole manual and just type in your favorite shell the
  28. following command:
  29. ```shellsession
  30. $ curl -L https://git.io/epre | sh
  31. ```
  32. You can now power up your Emacs, sit back and enjoy Prelude.
  33. There are two environment variables you can use to control the
  34. source repository and the installation directory. To change the
  35. installation directory:
  36. ```shellsession
  37. $ export PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  38. ```
  39. To change the source repository:
  40. ```shellsession
  41. $ export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  42. ```
  43. Note that the installer will back up any existing `.emacs` file or
  44. `.emacs.d` since it will unpack Prelude's code in `.emacs.d`. If
  45. you're doing a manual install make sure you don't have a `.emacs` file
  46. or back up your existing `.emacs.d` directory manually.
  47. **Important:** Don't forget to adjust your `prelude-modules.el` file in your personal directory
  48. once the installation is done. By default most of the modules
  49. that ship with Prelude are **not** loaded.
  50. ## Philosophy
  51. Prelude's philosophy is quite simple:
  52. * simple
  53. * easy to understand and extend
  54. * stable
  55. * a foundation for you to build upon, as opposed to some end-user product
  56. This means that it intentionally doesn't pack all the bells and whistles that it could.
  57. Prelude aims to enhance the classic Emacs experience without deviating a lot from it - e.g.
  58. it would never enable something like `evil-mode` (vim keybindings) by default and so on.
  59. All the third-party packages that it bundles are carefully vetted and are known to be of
  60. good quality and to have reliable maintainers. That generally means that Prelude's unlikely
  61. to immediate adopt some shiny new package, that has established tried and true alternatives.
  62. ## User Manual
  63. While Emacs Prelude is pretty simple at its core, it does have some specifics that
  64. are worth learning - e.g. configuration options, load order of modules and personal settings
  65. and so on.
  66. Check out our [user manual](https://prelude.emacsredux.com) for more information.
  67. ## Known issues
  68. Check out the project's
  69. [issue list](https://github.com/bbatsov/prelude/issues?sort=created&direction=desc&state=open)
  70. a list of unresolved issues. By the way - feel free to fix any of them
  71. and send me a pull request. :-)
  72. ## Support
  73. Support is available via several channels:
  74. * Prelude's Google Group <emacs-prelude@googlegroups.com>
  75. * Prelude's Freenode channel (`#prelude-emacs`)
  76. * [Gitter](https://gitter.im/bbatsov/prelude)
  77. ## Contributors
  78. Here's a [list](https://github.com/bbatsov/prelude/contributors) of all the people who have contributed to the
  79. development of Emacs Prelude.
  80. ## Bugs & Improvements
  81. Bug reports and suggestions for improvements are always
  82. welcome. GitHub pull requests are even better! :-)
  83. ## License
  84. Copyright © 2011-2020 Bozhidar Batsov and
  85. [contributors](https://github.com/bbatsov/prelude/contributors).
  86. Distributed under the GNU General Public License, version 3
  87. [badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg