Visual Studio Code

Visual Studio Code with apt

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
sudo install -o root -g root -m 644 packages.microsoft.gpg /usr/share/keyrings/
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list'
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install code
rm packages.microsoft.gpg

Look at this configuration: code.visualstudio.com

"Visual Studio Code is unable to watch for file changes in this large workspace"
cat /proc/sys/fs/inotify/max_user_watches
sudo vim /etc/sysctl.conf
Add this line to the end
/etc/sysctl.conf
fs.inotify.max_user_watches=524288
sudo sysctl -p