documentation formatting: Fri Apr 9 11:56:19 UTC 2021

This commit is contained in:
emacspace 2021-04-09 11:56:19 +00:00 committed by Maximilian Wolff
parent ef1ad4ecee
commit 95a703b684
3 changed files with 20 additions and 17 deletions

View File

@ -391,9 +391,9 @@ To install org-roam support set the variable =org-enable-roam-support= to =t=.
More information about org-roam package (including manual) can be found at [[https://www.orgroam.com/][Org-roam]] website. More information about org-roam package (including manual) can be found at [[https://www.orgroam.com/][Org-roam]] website.
*** Org-roam-server support *** Org-roam-server support
To install support for [[https://github.com/org-roam/org-roam-server][org-roam-server]] set the variable =org-enable-roam-server= To install support for [[https://github.com/org-roam/org-roam-server][org-roam-server]] set the variable =org-enable-roam-server=
to =t=. to =t=.
** Mode line support ** Mode line support
To temporarily enable mode line display of org clock, press ~SPC t m c~. To temporarily enable mode line display of org clock, press ~SPC t m c~.

View File

@ -135,11 +135,11 @@ setting your =PYTHONPATH= as explained at
** Language Server Protocol ** Language Server Protocol
The =lsp= backend can use either of the following language server implementations: The =lsp= backend can use either of the following language server implementations:
| symbol | description | | symbol | description |
|----------+----------------------------------------------------------------------------------| |----------+------------------------------------------|
| 'pyls | python-language-server package (default) | | 'pyls | python-language-server package (default) |
| 'mspyls | [[https://github.com/emacs-lsp/lsp-python-ms][Microsoft python language server]] | | 'mspyls | [[https://github.com/emacs-lsp/lsp-python-ms][Microsoft python language server]] |
| 'pyright | [[https://github.com/emacs-lsp/lsp-pyright][Microsoft pyright language server]] | | 'pyright | [[https://github.com/emacs-lsp/lsp-pyright][Microsoft pyright language server]] |
=pyls= is used by default - to use the Microsoft python language server, set the =pyls= is used by default - to use the Microsoft python language server, set the
=python-lsp-server= layer variable as follows: =python-lsp-server= layer variable as follows:

View File

@ -74,15 +74,15 @@ Magit auto-complete feature is enabled by default.
For this feature to work best - setup [[#repository-list][magit repository list]]. For this feature to work best - setup [[#repository-list][magit repository list]].
** Magit Plugins ** Magit Plugins
*** magit-delta *** magit-delta
[[https://github.com/dandavison/magit-delta][magit-delta]] uses [[https://github.com/dandavison/delta][delta]] to display diffs, with extensive changes to its [[https://github.com/dandavison/magit-delta][magit-delta]] uses [[https://github.com/dandavison/delta][delta]] to display diffs, with extensive changes to its
layout and styles. layout and styles.
You need to [[https://github.com/dandavison/delta#installation][install delta]] first, and add the following to your =dotspacemacs/user-config=: You need to [[https://github.com/dandavison/delta#installation][install delta]] first, and add the following to your =dotspacemacs/user-config=:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers (setq-default dotspacemacs-configuration-layers
'((git :variables git-enable-magit-delta-plugin t))) '((git :variables git-enable-magit-delta-plugin t)))
#+END_SRC #+END_SRC
*** magit-gitflow *** magit-gitflow
@ -91,9 +91,10 @@ of making things more manageable. While there are tools to assist with making
this easier, these do nothing you couldn't do manually. this easier, these do nothing you couldn't do manually.
After [[https://github.com/petervanderdoes/gitflow/wiki][installing]] =git-flow=, add the following to your =dotspacemacs/user-config=: After [[https://github.com/petervanderdoes/gitflow/wiki][installing]] =git-flow=, add the following to your =dotspacemacs/user-config=:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers (setq-default dotspacemacs-configuration-layers
'((git :variables git-enable-magit-gitflow-plugin t))) '((git :variables git-enable-magit-gitflow-plugin t)))
#+END_SRC #+END_SRC
*** magit-svn *** magit-svn
@ -102,9 +103,10 @@ Press ~!~ in *Magit* buffer to open the magit-svn-popup.
There you can push to or rebase from svn. There you can push to or rebase from svn.
To enable =magit-svn= plugin, add the following to your =dotspacemacs/user-config=: To enable =magit-svn= plugin, add the following to your =dotspacemacs/user-config=:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers (setq-default dotspacemacs-configuration-layers
'((git :variables git-enable-magit-svn-plugin t))) '((git :variables git-enable-magit-svn-plugin t)))
#+END_SRC #+END_SRC
| Key binding | Description | | Key binding | Description |
@ -116,9 +118,10 @@ To enable =magit-svn= plugin, add the following to your =dotspacemacs/user-confi
status buffer. status buffer.
To enable =magit-todos= plugin, add the following to your =dotspacemacs/user-config=: To enable =magit-todos= plugin, add the following to your =dotspacemacs/user-config=:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers (setq-default dotspacemacs-configuration-layers
'((git :variables git-enable-magit-todos-plugin t))) '((git :variables git-enable-magit-todos-plugin t)))
#+END_SRC #+END_SRC
** Global git commit mode ** Global git commit mode