1. iTerm2
As an alternative terminal, you can also use the iTerm
which offer a lot of great features.
- Open
iTerm2 -> Settings
. - Under
Profiles
, add a new profile. - Go to the
Colors
tab and import your theme (geojuji.itermcolors
).
📝 You can also configure iTerm
to save your preferences into a specific folder under the General > Preferences
tab.
If you use VSC on multiple computer, I recommended you to enable the synchronization of your configuration under Code > Preferences > Settings Sync
.
To ensure to have the same configurations installed between working stations in case you can't sync your configuration, we will link Visual Studio Code's configuration files into this repository and symlink the folder to let VSC use them again.
-
Copy all current configurations you could have to the repository:
cp -Riv ~/Library/Application\ Support/Code/User/ ~/geojuji/app/visual-studio-code
-
Delete the current
User
folder:rm -r ~/Library/Application\ Support/Code/User/
-
Create a symlink to link the configuration again:
ln -s ~/geojuji/app/visual-studio-code ~/Library/Application\ Support/Code/User
Now, all VSC's configurations can be found under ~/geojuji/app/visual-studio-code/
folder.
To add vscode
command, create a symlink with the following command:
ln -s /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code /usr/local/bin/code
Below, I share my recommended extensions for VSC. You can install them easily without find/install. For that, you need to run the following command with the vscode
binary command we just created:
vscode --install-extension dbaeumer.vscode-eslint
vscode --install-extension esbenp.prettier-vscode
vscode --install-extension IronGeek.vscode-env
vscode --install-extension stylelint.vscode-stylelint
💡 If you need to share your own extension, run the following command vscode --list-extensions | xargs -L 1 echo vscode --install-extension
.