Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provided Punctuation #59

Merged
merged 1 commit into from
Oct 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ Emacs users may install the package from MELPA, and then add the following to th
(require 'vue-mode)
```

`vue-mode` should then be activated on all files with a `.vue` extension
`vue-mode` should then be activated on all files with a `.vue` extension.

## Spacemacs

### There are [two ways](http://spacemacs.org/doc/DOCUMENTATION.html#configure-packages) to install and configure Spacemacs Packages:

#### A. The fastest way: Adding the necessary configurations to the default configuration file `.spacemacs`
#### A. The fastest way: Adding the necessary configurations to the default configuration file `.spacemacs`.

1. Within any screen in Spacemacs (including the Splash Screen, after loading), press `SPC` `f` `e` `d`.
2. This will bring you to the edit screen of the `.spacemacs` file.
3. Locate the section named `dotspacemacs-additional-packages '()`
3. Locate the section named `dotspacemacs-additional-packages '()`.
4. The following code should go inside the above parenthesis:
```lisp
(vue-mode :location (recipe
Expand All @@ -40,7 +40,7 @@ Emacs users may install the package from MELPA, and then add the following to th
:fetcher github
:repo "codefalling/vue-mode")))
```
5. Locate, in the same file, the section named `defun dotspacemacs/user-config ()`
5. Locate, in the same file, the section named `defun dotspacemacs/user-config ()`.
6. The following code should go right in that section:
```lisp
(defun dotspacemacs/init-vue-mode ()
Expand All @@ -58,10 +58,10 @@ Emacs users may install the package from MELPA, and then add the following to th
(defun dotspacemacs/init-vue-mode ()
(use-package vue-mode)))
```
7. So we made 2 changes to the `.spacemacs` file, time to save them, press `SPC` `f` `s`
8. With the saved file, time to make Spacemacs re-read the configuration, pressing `SPC` `f` `e` `R`
7. So we made 2 changes to the `.spacemacs` file, time to save them, press `SPC` `f` `s`.
8. With the saved file, time to make Spacemacs re-read the configuration, pressing `SPC` `f` `e` `R`.

#### B. The [more complex](http://spacemacs.org/doc/DOCUMENTATION.html#without-a-layer) way: Creating a new specific layer
#### B. The [more complex](http://spacemacs.org/doc/DOCUMENTATION.html#without-a-layer) way: Creating a new specific layer:

1. Add to your `packages`:
```lisp
Expand Down