mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
CONTRIBUTING.md: Describe emacs fish-mode setup
This commit is contained in:
parent
2a8309458d
commit
0d5ef3f43e
1 changed files with 6 additions and 1 deletions
|
@ -94,7 +94,12 @@ If you use Emacs: TBD
|
|||
|
||||
If you use ViM: TBD
|
||||
|
||||
If you use Emacs: TBD
|
||||
If you use Emacs: Install [fish-mode](https://github.com/wwwjfy/emacs-fish) (also available in melpa and melpa-stable) and `(setq-default indent-tabs-mode nil)` for it (via a hook or in `use-package`s ":init" block). It can also be made to run fish_indent via e.g.
|
||||
|
||||
```elisp
|
||||
(add-hook 'fish-mode-hook (lambda ()
|
||||
(add-hook 'before-save-hook 'fish_indent-before-save)))
|
||||
```
|
||||
|
||||
### Suppressing Reformatting of C++ Code
|
||||
|
||||
|
|
Loading…
Reference in a new issue