@@ -28,32 +28,32 @@ code-editor is based on `neovim` and it's language server protocol is installed
2828
2929### Install dependencies
3030
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.
3232
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 ` |
3838
39- ### Check dependencies
39+ ### Check dependencies (Optional)
4040
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 >
4244
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 >
4751
4852### Finishing Up
4953
50- Clone the entire repository.
54+ Clone the entire repository and create a soft link of essential files for the code-editor .
5155``` bash
5256git 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
5757ln -sf ~ /.code-editor/src ~ /.config/nvim
5858```
5959
0 commit comments