summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md41
1 files changed, 17 insertions, 24 deletions
diff --git a/README.md b/README.md
index eb9124e..8806a77 100644
--- a/README.md
+++ b/README.md
@@ -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.