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.

94 lines
3.2 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.1**.
  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. ## Fast Forward
  18. Assuming you're using an Unix-like OS (`*BSD`, `GNU/Linux`, `macOS`, `Solaris`,
  19. etc), you already have a recent version of Emacs installed, as well as `git` & `curl` you
  20. can skip the whole manual and just type in your favorite shell the
  21. following command:
  22. ```bash
  23. curl -L https://git.io/epre | sh
  24. ```
  25. You can now power up your Emacs, sit back and enjoy Prelude.
  26. There are two environment variables you can use to control the
  27. source repository and the installation directory. To change the
  28. installation directory:
  29. ```bash
  30. export PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  31. ```
  32. To change the source repository:
  33. ```bash
  34. export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh
  35. ```
  36. Note that the installer will back up any existing `.emacs` file or
  37. `.emacs.d` since it will unpack Prelude's code in `.emacs.d`. If
  38. you're doing a manual install make sure you don't have a `.emacs` file
  39. or back up your existing `.emacs.d` directory manually.
  40. **Important:** Don't forget to adjust your `prelude-modules.el` file in your personal directory
  41. once the installation is done. By default most of the modules
  42. that ship with Prelude are **not** loaded.
  43. ## User Manual
  44. While Emacs Prelude is pretty simple at its core, it does have some specifics that
  45. are worth learning - e.g. configuration options, load order of modules and personal settings
  46. and so on.
  47. Check out our [user manual](https://prelude.emacsredux.com) for more information.
  48. ## Known issues
  49. Check out the project's
  50. [issue list](https://github.com/bbatsov/prelude/issues?sort=created&direction=desc&state=open)
  51. a list of unresolved issues. By the way - feel free to fix any of them
  52. and send me a pull request. :-)
  53. ## Support
  54. Support is available via several channels:
  55. * Prelude's Google Group <emacs-prelude@googlegroups.com>
  56. * Prelude's Freenode channel (`#prelude-emacs`)
  57. * [Gitter](https://gitter.im/bbatsov/prelude)
  58. ## Contributors
  59. Here's a [list](https://github.com/bbatsov/prelude/contributors) of all the people who have contributed to the
  60. development of Emacs Prelude.
  61. ## Bugs & Improvements
  62. Bug reports and suggestions for improvements are always
  63. welcome. GitHub pull requests are even better! :-)
  64. Cheers,<br/>
  65. [Bozhidar](https://twitter.com/bbatsov)
  66. [badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg