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" |
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 EDITOR=vi | |
| export PATH=$HOME/.dotnet/tools:$PATH | |
| shopt -s histappend |
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 |