frontmacs

所属分类:collect
开发工具:Emacs Lisp
文件大小:0KB
下载次数:0
上传日期:2022-03-15 10:57:48
上 传 者sh-1993
说明:  基于软件包,以web为中心,可定制,默认情况下非常棒,经过验收的Emacs发行版,
(Package-based, web-centric, customizable, awesome-by-default, acceptance- tested Emacs distribution,)

文件列表:
.travis.yml (2392, 2021-05-12)
CHANGELOG.md (1436, 2021-05-12)
Cask (174, 2021-05-12)
LICENSE (1070, 2021-05-12)
Makefile (1270, 2021-05-12)
elpa.svg (795, 2021-05-12)
frontmacs-completion.el (1793, 2021-05-12)
frontmacs-config.el (3690, 2021-05-12)
frontmacs-css.el (317, 2021-05-12)
frontmacs-dart.el (127, 2021-05-12)
frontmacs-devel.el (953, 2021-05-12)
frontmacs-editing.el (5124, 2021-05-12)
frontmacs-javascript.el (2663, 2021-05-12)
frontmacs-keys.el (5366, 2021-05-12)
frontmacs-language-server.el (239, 2021-05-12)
frontmacs-markdown.el (297, 2021-05-12)
frontmacs-modeline.el (994, 2021-05-12)
frontmacs-pkg.el (1590, 2021-05-12)
frontmacs-projectile.el (722, 2021-05-12)
frontmacs-ruby.el (2186, 2021-05-12)
frontmacs-style.el (1150, 2021-05-12)
frontmacs-system.el (1583, 2021-05-12)
frontmacs-ui.el (1281, 2021-05-12)
frontmacs-vcs.el (533, 2021-05-12)
frontmacs-web.el (1095, 2021-05-12)
frontmacs-windowing.el (1837, 2021-05-12)
frontmacs-yaml.el (107, 2021-05-12)
frontmacs.el (704, 2021-05-12)
scripts/ (0, 2021-05-12)
scripts/build-archive.el (174, 2021-05-12)
scripts/init-frontmacs.el (2635, 2021-05-12)
test/ (0, 2021-05-12)
test/fixtures/ (0, 2021-05-12)
test/fixtures/boot-sequence/ (0, 2021-05-12)
test/fixtures/boot-sequence/config.el (215, 2021-05-12)
test/fixtures/boot-sequence/initializers/ (0, 2021-05-12)
test/fixtures/boot-sequence/initializers/hello-initializer.el (343, 2021-05-12)
test/fixtures/javascript.js (88, 2021-05-12)
... ...

# Frontmacs [![ELPA Version](https://cdn.rawgit.com/thefrontside/frontmacs/master/elpa.svg?raw=true)](http://elpa.frontside.io/archive-contents) [![Build Status](https://travis-ci.org/thefrontside/frontmacs.svg?branch=master)](https://travis-ci.org/thefrontside/frontmacs) [![Join the chat at https://gitter.im/thefrontside/frontmacs](https://badges.gitter.im/thefrontside/frontmacs.svg)](https://gitter.im/thefrontside/frontmacs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) A _package-based_, web-centric, customizable, awesome-by-default, acceptance-tested Emacs distribution curated by your friends at [Frontside][frontside]. We've been using Emacs for years here at [Frontside][frontside], and have finally decided to share the configuration for our favorite editor with the world. Why did we make our own? ### Package Based. We've been satisfied users of many a starter kit over the years, from the original [Emacs Starter Kit][2], to [Prelude][3] and [Spacemacs][4]. Most starter kits you come across _begin_ with a fork. You clone the repo, and then you're off to the races maintaining your own version. Any customizations you make are made to files under version control and so upgrading and keeping up with the community is a constant battle of merges, rebases, throw-aways and ultimately do overs. We know because we've [been there][5]. This is painful enough when you're maintaining your own fork, but every time we wanted to make a customization from which the entire team could benefit, it involved everybody doing the same merge, rebase, throw-away dance. But, it turns out that Emacs has a mechanism to distribute elisp code without having to use git. It's called `ELPA` and it's awesome. You can think of it like a Ruby gem or an NPM package, and this is what Frontmacs uses for deployment. We don't want to maintain code, we just want to enter a few keystrokes and download more awesome. And that's what we get by using elisp packages to install Frontmacs. Now, anytime we fix a bug or make an improvement, the entire team can benefit with a simple upgrade. ### Web technologies We are specialists in UI, and so it is natural that our Emacs distribution reflect that expertise. If you work in the web, then you can be sure that Frontmacs will be an able partner in slinging modern JavaScript using modern frameworks. Whether it's React, React Native, Angular, Ember, SASS.... whatever. ### Awesome by Default Emacs is true ultimate power! But that doesn't mean that it should be intimidating or terrifying to set up. Frontmacs aims to have everything you would expect to have a modern development environment to have out of the box: navigation, completion, etc... It draws power in a shared configuration in which everybody has a stake. More knowledge shared means fewer bugs arise, and those that do get resolved more quickly. ### Customizable Just because the default set of packages is heavily curated, doesn't mean that there shouldn't be room for you to innovate and exercise your creative muscles. In fact, because Frontmacs is distributed as an Emacs Lisp package, it is _decoupled_ from git and so you are now free to maintain your own customizations in your own repository without fear of conflicting with the main distribution. ### Acceptance Tested Most of the planet doesn't treat editor configuration as software. We do. Whenever you integrate a bunch of different packages from across the internet, you're bound to run into conflicts over things like key-bindings, or function advice. Making changes to an editing experience shared by many people is a responsibility we take very seriously. That's why Frontmacs makes sure that critical behaviors are tested so that you won't get bad upgrades that ruin your day. If you do, you can run the test suite to find out exactly what went wrong and where. --- ## Installation Download the bootstrap script into your emacs directory ``` $ cd ~/.emacs.d $ wget https://raw.githubusercontent.com/thefrontside/frontmacs/master/scripts/init-frontmacs.el ``` add the following lines to the top of your `init.el`: ``` emacs-lisp ;; boot frontmacs (load (expand-file-name "init-frontmacs.el" user-emacs-directory)) ``` Restart your Emacs and away you go! --- ## Configuration Frontmacs will create several files and directories in your Emacs directory (usually `$HOME/.emacs.d`) to help with configuration and initialization. The first is `config.el` This file is loaded _before_ Frontmacs actually initializes, and so it's a chance to set any well defined customizations. But don't worry, Frontmacs will generate this file for you so that you can see what all configuration variables are available. For everything else, there are all of the files contained in `$HOME/.emacs.d/initializers`. Every elisp file contained in this directory will be evaluated _after_ Frontmacs has been fully configured and initialized, so settings made in these files will override anything that comes with Frontmacs out of the box. For example, you can create your Ruby configuration with a file called: `$HOME/.emacs.d/initializers/ruby.el` ``` emacs-lisp (eval-after-load 'rspec-mode '(rspec-install-snippets)) (add-to-list 'auto-mode-alist '("Gemfile" . ruby-mode)) (add-to-list 'auto-mode-alist '("\\.gemspec\\'" . ruby-mode)) ``` Just drop any `.el` file into the `initializers/` directory, and Frontmacs will evaluate it. > Note: When in doubt about whether you should put something in `config.el` or a > custom initializer, use an initializer. --- ## Development You will need a patched version of `Cask` to do development on. ``` $ git clone -b specify-package-descriptor --depth=1 https://github.com/cowboyd/cask.git $HOME/.cask $ export PATH=$HOME/.cask/bin:$PATH ``` ### install dependencies ``` $ cask install ``` ### Run an emacs using nothing but the local frontmacs ``` $ make runlocal ``` [frontside]: http://frontside.io [2]: https://github.com/technomancy/emacs-starter-kit [3]: https://github.com/bbatsov/prelude [4]: http://spacemacs.org/ [5]: https://github.com/thefrontside/.emacs.d

近期下载者

相关文件


收藏者