kajacx

settings.json

Aug 10th, 2020
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.67 KB | None | 0 0
  1. // This file was initially generated by Windows Terminal 1.1.2021.0
  2. // It should still be usable in newer versions, but newer versions might have additional
  3. // settings, help text, or changes that you will not see unless you clear this file
  4. // and let us generate a new one for you.
  5.  
  6. // To view the default settings, hold "alt" while clicking on the "Settings" button.
  7. // For documentation on these settings, see: https://aka.ms/terminal-documentation
  8. {
  9.     "$schema": "https://aka.ms/terminal-profiles-schema",
  10.  
  11.     "defaultProfile": "{e1001cad-b4fa-48a0-8617-0791feb59286}",
  12.  
  13.     // You can add more global application settings here.
  14.     // To learn more about global settings, visit https://aka.ms/terminal-global-settings
  15.  
  16.     // If enabled, selections are automatically copied to your clipboard.
  17.     "copyOnSelect": false,
  18.  
  19.     // If enabled, formatted data is also copied to your clipboard
  20.     "copyFormatting": false,
  21.    
  22.     // Startup values
  23.     //"startOnUserLogin": true,
  24.     "initialCols": 240,
  25.     "initialRows": 60,
  26.     "confirmCloseAllTabs": false,
  27.     "initialPosition": "20,15",
  28.    
  29.  
  30.     // A profile specifies a command to execute paired with information about how it should look and feel.
  31.     // Each one of them will appear in the 'New Tab' dropdown,
  32.     //   and can be invoked from the commandline with `wt.exe -p xxx`
  33.     // To learn more about profiles, visit https://aka.ms/terminal-profile-settings
  34.     "profiles":
  35.     {
  36.         "defaults":
  37.         {
  38.             // Put settings here that you want to apply to all profiles.
  39.         },
  40.         "list":
  41.         [
  42.             {
  43.                 // Make changes here to the powershell.exe profile.
  44.                 "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  45.                 "name": "Windows PowerShell",
  46.                 "commandline": "powershell.exe",
  47.                 "backgroundImage": "C:\\Users\\karel_hrkal\\Desktop\\hexmap-dark.png",
  48.                 "hidden": false
  49.             },
  50.             {
  51.                 // Make changes here to the cmd.exe profile.
  52.                 "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
  53.                 "name": "Command Prompt",
  54.                 "commandline": "cmd.exe",
  55.                 "hidden": false
  56.             },
  57.             {
  58.                 "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
  59.                 "name": "Azure Cloud Shell",
  60.                 "source": "Windows.Terminal.Azure",
  61.                 "hidden": false
  62.             },
  63.             {
  64.                 "guid" : "{e1001cad-b4fa-48a0-8617-0791feb59286}",
  65.                 "name" : "Git Bash",
  66.                 "commandline" : "\"C:\\Programs\\Git\\bin\\bash.exe\" --login -i -l",
  67.                 "startingDirectory": "C:\\Projekty",
  68.                 "closeOnExit" : true,
  69.                 "colorScheme" : "Vintage",
  70.                 "cursorColor" : "#8080FF",
  71.                 "cursorShape" : "bar",
  72.                 "fontFace" : "Consolas",
  73.                 "fontSize" : 10,
  74.                 "antialiasingMode": "cleartype",
  75.                 "historySize" : 9001,
  76.                 "icon" : "C:\\Programs\\Git\\mingw64\\share\\git\\git-for-windows.ico",
  77.                 //"backgroundImage": "C:\\Users\\karel_hrkal\\Desktop\\hexmap.png",
  78.                 "backgroundImage": "C:\\Users\\karel_hrkal\\Desktop\\fantasy-landscape-mountains-waterfall-river-fantasy.png",
  79.                 "backgroundImageStretchMode": "uniform",
  80.                 "backgroundImageAlignment": "right",
  81.                 "padding" : "0, 0, 0, 0",
  82.                 "snapOnInput" : true,
  83.                 "useAcrylic" : false,
  84.                 "hidden": false
  85.             }
  86.         ]
  87.     },
  88.  
  89.     // Add custom color schemes to this array.
  90.     // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes
  91.     "schemes": [],
  92.  
  93.     // Add custom keybindings to this array.
  94.     // To unbind a key combination from your defaults.json, set the command to "unbound".
  95.     // To learn more about keybindings, visit https://aka.ms/terminal-keybindings
  96.     "keybindings":
  97.     [
  98.         // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json.
  99.         // These two lines additionally bind them to Ctrl+C and Ctrl+V.
  100.         // To learn more about selection, visit https://aka.ms/terminal-selection
  101.         { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
  102.         { "command": "paste", "keys": "ctrl+v" },
  103.  
  104.         // Press Ctrl+Shift+F to open the search box
  105.         { "command": "find", "keys": "ctrl+shift+f" },
  106.  
  107.         // Press Alt+Shift+D to open a new pane.
  108.         // - "split": "auto" makes this pane open in the direction that provides the most surface area.
  109.         // - "splitMode": "duplicate" makes the new pane use the focused pane's profile.
  110.         // To learn more about panes, visit https://aka.ms/terminal-panes
  111.         { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }
  112.     ]
  113. }
  114.  
Add Comment
Please, Sign In to add comment