Last active
May 6, 2026 16:50
-
-
Save jeangatto/f7ec6ead45ced089324cb0b7dd938086 to your computer and use it in GitHub Desktop.
Windows Terminal Settings (JSON) with Dracula Theme + Meslo (Nerd Fonts)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Nerds Fonts: https://github.com/ryanoasis/nerd-fonts | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": [], | |
| "centerOnLaunch": true, | |
| "copyFormatting": "none", | |
| "copyOnSelect": true, | |
| "defaultProfile": "{dc0781d5-4b33-4c76-8989-14dc15bb60b4}", | |
| "experimental.detectURLs": true, | |
| "experimental.enableColorSelection": true, | |
| "focusFollowMouse": true, | |
| "showAdminShield": true, | |
| "trimPaste": true, | |
| "useAcrylicInTabRow": true, | |
| "warning.confirmCloseAllTabs": false, | |
| "keybindings": [ | |
| { | |
| "id": "Terminal.CopyToClipboard", | |
| "keys": "ctrl+c" | |
| }, | |
| { | |
| "id": "Terminal.FindText", | |
| "keys": "ctrl+shift+f" | |
| }, | |
| { | |
| "id": "Terminal.PasteFromClipboard", | |
| "keys": "ctrl+v" | |
| }, | |
| { | |
| "id": "Terminal.DuplicatePaneAuto", | |
| "keys": "alt+shift+d" | |
| } | |
| ], | |
| "newTabMenu": [ | |
| { | |
| "type": "remainingProfiles" | |
| } | |
| ], | |
| "disabledProfileSources": [ | |
| "Windows.Terminal.Wsl", | |
| "Windows.Terminal.Azure", | |
| "Windows.Terminal.PowershellCore", | |
| "Windows.Terminal.VisualStudio" | |
| ], | |
| "profiles": { | |
| "defaults": { | |
| "altGrAliasing": true, | |
| "antialiasingMode": "cleartype", | |
| "closeOnExit": "never", | |
| "colorScheme": "Dracula PRO", | |
| "cursorShape": "underscore", | |
| "experimental.rainbowSuggestions": true, | |
| "opacity": 90, | |
| "useAcrylic": true, | |
| "font": { | |
| "face": "MesloLGMDZ Nerd Font", | |
| "size": 13 | |
| } | |
| }, | |
| "list": [ | |
| { | |
| "closeOnExit": "never", | |
| "colorScheme": "Dracula PRO", | |
| "commandline": "\"C:\\Program Files\\PowerShell\\7\\pwsh.exe\" -Nologo -NoProfileLoadTime", | |
| "elevate": true, | |
| "experimental.repositionCursorWithMouse": true, | |
| "guid": "{da187577-e24a-4686-8a52-e6109551eb9a}", | |
| "hidden": false, | |
| "icon": "ms-appx:///ProfileIcons/pwsh.png", | |
| "name": "PowerShell (Run as Administrator)", | |
| "startingDirectory": "%USERPROFILE%" | |
| }, | |
| { | |
| "closeOnExit": "never", | |
| "colorScheme": "Dracula PRO", | |
| "commandline": "\"C:\\Program Files\\PowerShell\\7\\pwsh.exe\" -Nologo -NoProfileLoadTime", | |
| "elevate": false, | |
| "experimental.repositionCursorWithMouse": true, | |
| "guid": "{dc0781d5-4b33-4c76-8989-14dc15bb60b4}", | |
| "hidden": false, | |
| "icon": "ms-appx:///ProfileIcons/pwsh.png", | |
| "name": "PowerShell", | |
| "startingDirectory": "%USERPROFILE%" | |
| } | |
| ] | |
| }, | |
| "schemes": [ | |
| { | |
| "background": "#22212C", | |
| "black": "#22212C", | |
| "blue": "#9580FF", | |
| "brightBlack": "#504C67", | |
| "brightBlue": "#AA99FF", | |
| "brightCyan": "#99FFEE", | |
| "brightGreen": "#A2FF99", | |
| "brightPurple": "#FF99CC", | |
| "brightRed": "#FFAA99", | |
| "brightWhite": "#FFFFFF", | |
| "brightYellow": "#FFFF99", | |
| "cursorColor": "#FFFFFF", | |
| "cyan": "#80FFEA", | |
| "foreground": "#F8F8F2", | |
| "green": "#8AFF80", | |
| "name": "Dracula PRO", | |
| "purple": "#FF80BF", | |
| "red": "#FF9580", | |
| "selectionBackground": "#FFFFFF", | |
| "white": "#F8F8F2", | |
| "yellow": "#FFFF80" | |
| } | |
| ], | |
| "themes": [] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment