Skip to content

Posts tagged vscode

Posts under this tag. Back to all posts when you want the full stream.

Posts

@latest_post

Install VSCode in Linux

One code editor to rule them all...
Visual Studio Code is fast, nimble, and beautiful.

Shell command
cd ~/tmp
git clone https://aur.archlinux.org/visual-studio-code-bin.git
cd visual-studio-code-bin/
makepkg -si

Execute with:

Shell command
code &

inotify watchers

We need to increase the amount of inotify watchers.
This is needed so Visual Studio Code can manage projects with a lot of files:

Shell command
echo fs.inotify.max_user_watches=524288 | sudo tee \
/etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system
Updated 6 min read
Start reading Read more