@@ -28,32 +28,32 @@ code-editor is based on `neovim` and it's language server protocol is installed
28
28
29
29
### Install dependencies
30
30
31
- If your device is non-rooted then use ` sudo ` infront of every command mentioned below. * ` eg: apt install git nodejs neovim -y ` *
31
+ If your shell is non-rooted then use ` sudo ` infront of every command mentioned below.
32
32
33
- | ** Platform** | ** Supported Package** | ** Rooted ** | ** Command** |
34
- | :--------------------:| :---------------------:| :----------: | :---------- -----------------:|
35
- | Debian Based, Termux | deb | ✅ | ` apt install git nodejs neovim -y ` |
36
- | RHEL Based | rpm | ✅ | ` dnf install git nodejs neovim -y ` |
37
- | Arch Based | pkg.tar.zst | ✅ | ` pacman -S git nodejs neovim -y ` |
33
+ | ** Platform** | ** Supported Package** | ** Command** |
34
+ | :--------------------:| :---------------------:| :---------------------------:|
35
+ | Debian Based | deb | ` apt install nodejs neovim ` |
36
+ | RHEL Based | rpm | ` dnf install nodejs neovim ` |
37
+ | Arch Based | pkg.tar.zst | ` pacman -S nodejs neovim ` |
38
38
39
- ### Check dependencies
39
+ ### Check dependencies (Optional)
40
40
41
- Check that these packages are successfully installed or not using the following commands.
41
+ <details >
42
+ <summary >Check that these packages are successfully installed or not using the following commands.</summary >
43
+ <br >
42
44
43
- | ** Packages** | ** Command** | ** Expected Results** |
44
- | :------------:| :-----------:| :--------------------:|
45
- | nodejs | ` node -v ` | v22.8.0 |
46
- | npm | ` npm -v ` | 10.8.2 |
45
+ | ** Package** | ** Command** | ** Expected Output** |
46
+ | :-----------:| :-----------:| :-------------------:|
47
+ | nodejs | ` node -v ` | v22.8.0 |
48
+ | npm | ` npm -v ` | 10.8.2 |
49
+
50
+ </details >
47
51
48
52
### Finishing Up
49
53
50
- Clone the entire repository.
54
+ Clone the entire repository and create a soft link of essential files for the code-editor .
51
55
``` bash
52
56
git clone --depth=1 https://github.com/OurCodeBase/code-editor ~ /.code-editor
53
- ```
54
-
55
- Create a soft link of essential files for the code-editor.
56
- ``` bash
57
57
ln -sf ~ /.code-editor/src ~ /.config/nvim
58
58
```
59
59
0 commit comments