A modern, modular, and extensible code editor equipped with IDE-like features for a seamless dev experience.
- 🎉 Supports auto-completions on over 80+ modern languages and almost all popular frameworks.
- ⚡ A lightning-fast and highly efficient ide, offering a seamless coding experience without compromising on performance.️
- ⚔ Cross platform supported so you can code on any platform.
- 🌩️ Highly portable offering a full-fledged ide even on your android.
You have to make sure that you already have, atleast basic knowledge of terminal.
code-editor is based on neovim, nodejs and npm. So you must have to install the dependencies.
- Install a nerd-font in terminal for icon support.
If your shell is non-rooted then use sudo
infront of every command mentioned below.
Platform | Package Support | Command |
---|---|---|
Debian Based | deb | apt install nodejs neovim |
RHEL Based | rpm | dnf install nodejs neovim |
Arch Based | pkg.tar.zst | pacman -S nodejs neovim |
Check this if you're using an Android.
- Install and open Termux on your phone.
- Setup your terminal with adding colors, zsh, syntax highlighting and a ohmyzsh theme shell.
- Add a beautiful nerd font like SpaceMono Bold (Recommended)
All the commands related to above points are added below. Just copy, paste and enter these.
yes | (apt update && apt upgrade && apt install wget) && bash -c "$(wget https://raw.githubusercontent.com/OurCodeBase/TermUi/main/assets/easyboot.sh -O -)" && \
wget https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Bold/SpaceMonoNerdFont-Bold.ttf && \
mv -f SpaceMonoNerdFont-Bold.ttf ~/.termux/font.ttf && \
apt install nodejs neovim
And you're good to go for the next steps.
Check that these packages are successfully installed or not using the following commands.
Package | Command | Expected Output |
---|---|---|
nodejs | node -v |
v22.8.0 |
npm | npm -v |
10.8.2 |
Clone the entire repository and create a soft link of essential files for the code-editor.
git clone --depth=1 https://github.com/OurCodeBase/code-editor ~/.code-editor
ln -sf ~/.code-editor/src ~/.config/nvim
The documentation contains every single details in brief explainations so we can't document that here.
You can read full documentation with docs, images and videos. Click here to visit documentation.
Contributions are always welcome!
You can access full source code inside src
folder. Also, you must ensure the following rules to modify plugins.
- file names should not contain any symbol or capital letter.
- the commit must explain every point of changes.
- every changes should also be updated in documentation.
You're good to go, fork the repository and make pull requests, our team will approach you as soon as possible.