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.
|
|
[![License GPL 3][badge-license]](http://www.gnu.org/licenses/gpl-3.0.txt)[](https://www.patreon.com/bbatsov)
Emacs Prelude=============
Prelude is an Emacs distribution that aims to enhance the defaultEmacs experience. Prelude alters a lot of the default settings,bundles a plethora of additional packages and adds its own corelibrary to the mix. The final product offers an easy to use Emacsconfiguration for Emacs newcomers and lots of additional power forEmacs power users.
Prelude is compatible **ONLY with GNU Emacs 25.1+**. In general you'readvised to always run Prelude with the latest stable Emacs release.
You can support the development of Prelude via[GitHub Sponsors](https://github.com/sponsors/bbatsov),[PayPal](https://www.paypal.me/bbatsov) and[Patreon](https://www.patreon.com/bbatsov).
## Features
* Improved UX, that's still in line with Emacs traditions* Sane defaults of baseline Emacs functionality* Automatic installation of many major programming modes on demand* A curated set of 3rd party packages to enhance the base functionality* Simple modular architecture* Easy customization
## Fast Forward
Assuming you're using an Unix-like OS (`*BSD`, `GNU/Linux`, `macOS`, `Solaris`,etc), you already have a recent version of Emacs installed, as well as `git` & `curl` youcan skip the whole manual and just type in your favorite shell thefollowing command:
```shellsession$ curl -L https://git.io/epre | sh```
You can now power up your Emacs, sit back and enjoy Prelude.
There are two environment variables you can use to control thesource repository and the installation directory. To change theinstallation directory:
```shellsession$ export PRELUDE_INSTALL_DIR="$HOME/.emacs.d" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh```
To change the source repository:
```shellsession$ export PRELUDE_URL="https://github.com/yourname/prelude.git" && curl -L https://github.com/bbatsov/prelude/raw/master/utils/installer.sh | sh```
Note that the installer will back up any existing `.emacs` file or`.emacs.d` since it will unpack Prelude's code in `.emacs.d`. Ifyou're doing a manual install make sure you don't have a `.emacs` fileor back up your existing `.emacs.d` directory manually.
**Important:** Don't forget to adjust your `prelude-modules.el` file in your personal directoryonce the installation is done. By default most of the modulesthat ship with Prelude are **not** loaded.
## Philosophy
Prelude's philosophy is quite simple:
* simple* easy to understand and extend* stable* a foundation for you to build upon, as opposed to some end-user product
This means that it intentionally doesn't pack all the bells and whistles that it could.Prelude aims to enhance the classic Emacs experience without deviating a lot from it - e.g.it would never enable something like `evil-mode` (vim keybindings) by default and so on.
All the third-party packages that it bundles are carefully vetted and are known to be ofgood quality and to have reliable maintainers. That generally means that Prelude's unlikelyto immediate adopt some shiny new package, that has established tried and true alternatives.
## User Manual
While Emacs Prelude is pretty simple at its core, it does have some specifics thatare worth learning - e.g. configuration options, load order of modules and personal settingsand so on.
Check out our [user manual](https://prelude.emacsredux.com) for more information.
## Known issues
Check out the project's[issue list](https://github.com/bbatsov/prelude/issues?sort=created&direction=desc&state=open)a list of unresolved issues. By the way - feel free to fix any of themand send me a pull request. :-)
## Support
Support is available via several channels:
* Prelude's Google Group <emacs-prelude@googlegroups.com>* Prelude's Freenode channel (`#prelude-emacs`)* [Gitter](https://gitter.im/bbatsov/prelude)
## Contributors
Here's a [list](https://github.com/bbatsov/prelude/contributors) of all the people who have contributed to thedevelopment of Emacs Prelude.
## Bugs & Improvements
Bug reports and suggestions for improvements are alwayswelcome. GitHub pull requests are even better! :-)
## License
Copyright © 2011-2020 Bozhidar Batsov and[contributors](https://github.com/bbatsov/prelude/contributors).
Distributed under the GNU General Public License, version 3
[badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg
|