NathanaëlBeau
NathanaëlBeau

Reputation: 1152

Change terminal in visual studio code by iTerm2 with Powerlevel10k

I'm trying to change my VScode terminal. I have followed this tutorial.

My iTerm terminal has been changed perfectly : enter image description here

I tried to edit my settings.json files in VScode like this :

{
    "terminal.external.osxExec": "iTerm.app",
    "terminal.integrated.shell.osx": "/bin/zsh",
    "terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'"
}

But i got this different result :

enter image description here

I can't understand why the parameters are not the same and some images do not pass in VScode.

Upvotes: 14

Views: 12852

Answers (1)

NathanaëlBeau
NathanaëlBeau

Reputation: 1152

Finally, the "terminal.integrated.fontFamily" points out (apparently) the non-ASCII font. The settings.json file from Visual Studio Code should be :

{
  "terminal.external.osxExec": "iTerm.app",
  "terminal.integrated.defaultProfile.osx": "zsh",
  "terminal.integrated.fontFamily": "MesloLGS NF"
}

Upvotes: 57

Related Questions