summaryrefslogtreecommitdiff
path: root/README.md
blob: 5750423c618ed5eac3c3aafc2b78deaabaf1d881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Emacs Configuration file
Emacs configuration file

## Keybinds
### General
- Jump to symbol: `C-]` or `gd`
- Jump back from symbol: `C-o`
- Open project: `s-o`
- Find file in project: `s-p`
- Grep in project: `s-F`
- Refactor : `F2`
- Move line up/down: `M-<UP/DOWN>`


## Per-language Features

### JavaScript/TypeScript
Must have installed the Typescript language server: https://github.com/typescript-language-server/typescript-language-server

### Text
`hunspell` is used to provide spell check on `.txt` files. Make sure to have install the hunspell package for your language. In my instance, I had to do:
```sh
sudo pacman -S hunspell hunspell-en_us
```