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.

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