diff options
| author | matthew <matt.kosarek@canonical.com> | 2025-12-08 20:16:41 -0500 |
|---|---|---|
| committer | matthew <matt.kosarek@canonical.com> | 2025-12-08 20:16:41 -0500 |
| commit | 5211ebe2bf227c747cc607e3a1572473033e87cd (patch) | |
| tree | 7c9143ad15a3e6a99a08f28a4dad9db25c3d467d | |
| parent | e0a7f6894720407f7824593d347367402d8d29e9 (diff) | |
Update readme
| -rw-r--r-- | README.md | 41 |
1 files changed, 17 insertions, 24 deletions
@@ -2,45 +2,38 @@ My emacs configuration file. This configuration only works with Emacs version 28. ## Keybinds -### General - Copy: `M-w` - Cut: `C-w` - Paste: `C-y` - Jump to symbol: `M-.` - Jump back from symbol: `M-,` +- Next error: `M-n` +- Previous error: `M-p` - Open project: `C-c p o` - Find file in project: `C-c p p` - Grep in project: `C-c p f` -- Refactor : `F2` +- Rename symbol : `F2` - Move line up/down: `M-<UP/DOWN>` - Find references: `M-?` - Kill buffer: `C-x k` - Autocomplete: `C-.` -## Fonts -- I make use of `monaco` and `iosevka`. - -## Org mode -- The configuration assumes that you have an `~/OrgRoam` folder and an `~/OrgRoam/daily` folder at the root of your home directory. +## Dependencies +- [ripgrep](https://github.com/BurntSushi/ripgrep): for search +- [gopls](https://go.dev/gopls/): go language server +- [pylsp](https://pypi.org/project/python-lsp-server/): python language server +- [hunspell](https://github.com/hunspell/hunspell): for spellcheck +- [clangd](https://github.com/clangd/clangd): C/C++ language server +- [dart](https://dart.dev/): dart language server -## Per-language Features - -### JavaScript/TypeScript -Must have installed the Typescript language server: https://github.com/typescript-language-server/typescript-language-server - -### Python -``` -sudo pip install python-lsp-server -``` +## Fonts +- JetBrains Mono +- Iosevka -### Go -Make sure you have installed `gopls`! On arch, this is: +## Ubuntu 25.10 Install ```sh -sudo pacman -S gopls +sudo apt install ripgrep gopls python3-pylsp clangd ``` -### 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 -``` +## Org mode +The configuration assumes that you have an `~/OrgRoam` folder and an `~/OrgRoam/daily` folder at the root of your home directory. |
