Powerline in visual studio code
wordpress meta
title: 'Powerline In Visual Studio Code'
date: '2020-05-20T13:31:13-05:00'
status: publish
permalink: /powerline-in-visual-studio-code
author: admin
excerpt: ''
type: post
id: 1645
category:
- Uncategorized
tag: []
post_format: []
There are some examples here:
- https://dev.to/mattstratton/making-powerline-work-in-visual-studio-code-terminal-1m7
- https://github.com/abertsch/Menlo-for-Powerline
I chose to follow a comment suggestion Meslo
download the Meslo font
https://github.com/ryanoasis/nerd-fonts/releases/tag/v2.1.0
```bash 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
--------------------------
```bash
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
}