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.

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