[README.md] update

This commit is contained in:
Jesús 2021-05-25 11:21:09 -05:00
parent 91d8471e42
commit 3cace18a5a
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -31,7 +31,9 @@ First step:
### Icons ### Icons
emacs --batch --eval="(progn (package-initialize)(package-install 'all-the-icons))" ```console
$ emacs --batch --eval="(progn (package-initialize)(package-install 'all-the-icons))"
```
### Markdown Mode ### Markdown Mode
- Require installed markdown in distro GNU+Linux, example: - Require installed markdown in distro GNU+Linux, example:
@ -41,9 +43,17 @@ First step:
### Flycheck Mode ### Flycheck Mode
- Require installed the languages checking, example: - Require installed the languages checking, example:
`pacman -S shellcheck` # bash, sh #### bash, sh
`pacman -S python-pylint` # python ```console
$ pacman -S shellcheck
```
#### python
```console
$ pacman -S python-pylint
```
### Neotree ### Neotree
@ -56,17 +66,17 @@ So pressing `[f6]` will display
### Mode Python ### Mode Python
- Require installed virtualenv: - Require installed virtualenv:
pacman -S python-virtualenv $ pacman -S python-virtualenv
- Enable or disable pyvenv-mode: <kdb>M-x</kdb> pyvenv-mode - Enable or disable pyvenv-mode: <kdb>M-x</kdb> pyvenv-mode
- To create virtualenv from emacs: - To create virtualenv from emacs:
pyvenv-create $ pyvenv-create
- To activate virtualenv from emacs: - To activate virtualenv from emacs:
pyvenv-activate $ pyvenv-activate
## Troubleshooting ## Troubleshooting
@ -81,19 +91,27 @@ gpg: Imposible comprobar la firma: No public key
### Method 0 ### Method 0
gpg --homedir ~/.emacs.d/elpa/gnupg --receive-keys 066DAFCB81E42C40 ```console
$ gpg --homedir ~/.emacs.d/elpa/gnupg --receive-keys 066DAFCB81E42C40
```
### Method 1 ### Method 1
Disable temp signature key Disable temp signature key
```console
$ sed -i "s|(setq package-check-signature 'allow-unsigned)|(setq package-check-signature nil)|g" "$HOME/.emacs.d/init.el" $ sed -i "s|(setq package-check-signature 'allow-unsigned)|(setq package-check-signature nil)|g" "$HOME/.emacs.d/init.el"
```
```console
M-x package-install RET gnu-elpa-keyring-update RET M-x package-install RET gnu-elpa-keyring-update RET
```
and enable signature key and enable signature key
```console
$ sed -i "s|(setq package-check-signature nil)|(setq package-check-signature 'allow-unsigned)|g" "$HOME/.emacs.d/init.el" $ sed -i "s|(setq package-check-signature nil)|(setq package-check-signature 'allow-unsigned)|g" "$HOME/.emacs.d/init.el"
```
## Evaluate in buffer ## Evaluate in buffer