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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+]", | |
| "command": "editor.action.jumpToBracket", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+]", | |
| "command": "editor.action.selectToBracket" |
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
| #!/bin/bash | |
| git clone https://github.com/tonsky/FiraCode.git | |
| git clone https://github.com/ryanoasis/nerd-fonts.git | |
| version=6.2 && curl -fsSL https://github.com/tonsky/FiraCode/releases/download/$version/Fira_Code_v$version.zip -o FiraCodeBinaries.zip | |
| rm -rf FiraCodeBinaries && unzip FiraCodeBinaries.zip -d FiraCodeBinaries && rm -f FiraCodeBinaries.zip | |
| cp FiraCodeBinaries/ttf/FiraCode-Bold.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Bold | |
| cp FiraCodeBinaries/ttf/FiraCode-Light.ttf nerd-fonts/src/unpatched-fonts/FiraCode/Light |
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
| export HISTCONTROL=ignoreboth | |
| export HISTSIZE=100000 | |
| export HISTFILESIZE=200000 | |
| export AWS_PAGER= | |
| export BROWSER=wslview | |
| export EDITOR=vim | |
| if [ "$VSCODE_INJECTION" = "1" ]; then | |
| export EDITOR="code --wait" | |
| fi |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema-preview", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "clearBuffer", | |
| "clear": "screen" |