Skip to content

Instantly share code, notes, and snippets.

@jorgeacortes
Last active September 28, 2020 13:42
Show Gist options
  • Save jorgeacortes/55c32625368a6718cb0e76499a4d1c67 to your computer and use it in GitHub Desktop.
Save jorgeacortes/55c32625368a6718cb0e76499a4d1c67 to your computer and use it in GitHub Desktop.
Windows terminal custom settings
// Properly delimiter words similar to bash (https://github.com/microsoft/terminal/issues/3196)
"wordDelimiters" : " ()\"':,;<>~!@#$%^&*|+=[]{}~?│",
"profiles":
{
"defaults":
{
"fontFace": "MesloLGLDZ Nerd Font Mono",
"fontSize": 9,
"fontWeight": "medium"
}
},
"keybindings":
{
[ // Proper tab handling
{ "command": { "action": "closeTab", "index": 3 }, "keys": "ctrl+w" }, // Close
{ "command": { "action": "newTab", "index": 2 }, "keys": "ctrl+t" } // WSL
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment