Skip to main content
Logo
Overview

Powerline In Visual Studio Code

May 19, 2020
1 min read

There are some examples here:

I chose to follow a comment suggestion Meslo

download the Meslo font

https://github.com/ryanoasis/nerd-fonts/releases/tag/v2.1.0

Terminal window
rrosso  ~  Downloads  sudo -i
root@pop-os:~# cd /usr/share/fonts/truetype
root@pop-os:/usr/share/fonts/truetype# mkdir Meslo
root@pop-os:/usr/share/fonts/truetype# cd Meslo/
root@pop-os:/usr/share/fonts/truetype/Meslo# unzip /home/rrosso/Downloads/Meslo.zip
Archive: /home/rrosso/Downloads/Meslo.zip
inflating: Meslo LG M Bold Nerd Font Complete Mono.ttf
root@pop-os:/usr/share/fonts/truetype/Meslo# fc-cache -vf /usr/share/fonts/

update the vscode settings

Terminal window
rrosso  ~  .config  Code  User  pwd
/home/rrosso/.config/Code/User
rrosso  ~  .config  Code  User  cat settings.json
{
"editor.fontSize": 12,
"editor.fontFamily": "MesloLGM Nerd Font",
"terminal.integrated.fontSize": 11,
"terminal.integrated.fontFamily": "MesloLGM Nerd Font",
"editor.minimap.enabled": false
}