mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2025-04-26 03:45:21 -04:00
random 2019 updates
This commit is contained in:
parent
2d77da8c1f
commit
f763a1b3cd
87
.zshrc
87
.zshrc
@ -1,3 +1,8 @@
|
||||
# debug zsh startup time
|
||||
# uncomment following line and run: zsh -ic zprof
|
||||
# zmodload zsh/zprof
|
||||
|
||||
|
||||
# If you come from bash you might have to change your $PATH.
|
||||
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||
|
||||
@ -9,19 +14,25 @@ export PATH=$PATH:"$(go env GOPATH)/bin"
|
||||
export PATH=$PATH:"$HOME/adt-bundle-mac/sdk/platform-tools"
|
||||
export PATH=$PATH:"$HOME/.fastlane/bin"
|
||||
export PATH=$PATH:"/opt/metasploit-framework/bin"
|
||||
#export PATH=$PATH:"/usr/local/opt/mongodb@3.2/bin"
|
||||
#export PATH=$PATH:"/Users/jake/Library/Python/3.7/bin"
|
||||
# export PATH=$PATH:"/usr/local/opt/mongodb@3.2/bin"
|
||||
# export PATH=$PATH:"/Users/jake/Library/Python/3.7/bin"
|
||||
export PATH="/usr/local/opt/ruby/bin:$PATH"
|
||||
export PATH="/usr/local/opt/curl/bin:$PATH"
|
||||
|
||||
# The next line updates PATH for the Google Cloud SDK.
|
||||
if [ -f '/Users/jake/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/jake/google-cloud-sdk/path.zsh.inc'; fi
|
||||
|
||||
# The next line enables shell command completion for gcloud.
|
||||
if [ -f '/Users/jake/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/jake/google-cloud-sdk/completion.zsh.inc'; fi
|
||||
export GOPATH=$HOME/golang
|
||||
export GOROOT=/usr/local/opt/go/libexec
|
||||
export PATH=$PATH:$GOPATH/bin
|
||||
export PATH=$PATH:$GOROOT/bin
|
||||
|
||||
# eval $(thefuck --alias) # https://github.com/nvbn/thefuck
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
#[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh" # This loads nvm
|
||||
#[ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion" # This loads nvm bash_completion
|
||||
|
||||
# NVM makes zsh startup suuuuuuuuuper slow -- commented out above lines to speed up and 'loadnvm' loads NVM when needed
|
||||
alias loadnvm='[ -s "/usr/local/opt/nvm/nvm.sh" ] && . "/usr/local/opt/nvm/nvm.sh"; [ -s "/usr/local/opt/nvm/etc/bash_completion" ] && . "/usr/local/opt/nvm/etc/bash_completion"'
|
||||
|
||||
eval "$(rbenv init -)"
|
||||
eval $(thefuck --alias) # https://github.com/nvbn/thefuck
|
||||
|
||||
# Path to your oh-my-zsh installation.
|
||||
export ZSH="/Users/jake/.oh-my-zsh"
|
||||
@ -87,7 +98,7 @@ ZSH_THEME="agnoster"
|
||||
# Add wisely, as too many plugins slow down shell startup.
|
||||
plugins=(
|
||||
git
|
||||
colored-man-pages
|
||||
# colored-man-pages
|
||||
colorize
|
||||
pip
|
||||
python
|
||||
@ -129,10 +140,21 @@ source $ZSH/oh-my-zsh.sh
|
||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
|
||||
|
||||
HISTFILE=~/.zsh_history
|
||||
HISTSIZE=10000
|
||||
SAVEHIST=10000
|
||||
|
||||
|
||||
export VISUAL="nano"
|
||||
export EDITOR="nano"
|
||||
|
||||
# Enable aliases to be sudo’ed
|
||||
|
||||
export HOMEBREW_NO_ANALYTICS=1
|
||||
export HOMEBREW_NO_INSECURE_REDIRECT=1
|
||||
export HOMEBREW_CASK_OPTS=--require-sha
|
||||
|
||||
|
||||
# Enable aliases to be sudo'ed
|
||||
alias sudo="sudo "
|
||||
|
||||
alias ll="ls -lah"
|
||||
@ -161,7 +183,7 @@ alias dns-set-cloudflare="dns-set 1.1.1.1 1.0.0.1"
|
||||
alias dns-set-google="dns-set 8.8.8.8 8.8.4.4"
|
||||
|
||||
alias flush="sudo killall -HUP mDNSResponder; sudo killall mDNSResponderHelper; sudo dscacheutil -flushcache"
|
||||
alias serve="python -c 'import SimpleHTTPServer; SimpleHTTPServer.test()'"
|
||||
alias serve="echo 'Starting server at http://127.0.0.1:8000/ ...'; python3 -m http.server"
|
||||
alias hosts="sudo $EDITOR /etc/hosts"
|
||||
alias speed="wget -O /dev/null http://cachefly.cachefly.net/100mb.test"
|
||||
alias digg="dig @8.8.8.8 +nocmd any +multiline +noall +answer"
|
||||
@ -171,18 +193,52 @@ alias rehide="defaults write com.apple.finder AppleShowAllFiles -bool false && k
|
||||
alias forcetrash="sudo rm -rf ~/.Trash /Volumes/*/.Trashes"
|
||||
alias afk="/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resources/CGSession -suspend"
|
||||
|
||||
alias update="brew update; brew upgrade; brew cleanup; npm install npm -g; npm update -g; gcloud components update; gem update --system; gem update; gem cleanup" # sudo softwareupdate -i -a;
|
||||
alias displays="system_profiler SPDisplaysDataType"
|
||||
alias cpu="sysctl -n machdep.cpu.brand_string"
|
||||
alias screenfetch="neofetch"
|
||||
|
||||
alias killfinder="killall Finder"
|
||||
alias killdock="killall Dock"
|
||||
alias killmenubar="killall SystemUIServer NotificationCenter"
|
||||
alias killos="killfinder && killdock && killmenubar"
|
||||
|
||||
alias update="brew update; brew upgrade; brew cleanup; nvm install node --latest-npm --reinstall-packages-from=node; npm install npm -g; npm update -g; gem update --system; gem update; gem cleanup" # sudo softwareupdate -i -a;
|
||||
|
||||
alias dc="docker-compose"
|
||||
alias pubkey="more ~/.ssh/id_rsa.pub | pbcopy | echo '=> Public key copied to pasteboard.'"
|
||||
|
||||
alias gundo="git push -f origin HEAD^:master"
|
||||
alias gundo="git reset --soft HEAD~1"
|
||||
alias gac="git add . && git commit -m "
|
||||
alias gs="git status -sb"
|
||||
alias gd="git diff"
|
||||
|
||||
alias vs="code ./"
|
||||
alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app"
|
||||
alias watchos="open /Applications/Xcode.app/Contents/Developer/Applications/Simulator\ \(Watch\).app"
|
||||
|
||||
alias sshalt="ssh -p 2222"
|
||||
alias moshalt="mosh --ssh=\"ssh -p 2222\""
|
||||
|
||||
alias finder="open ."
|
||||
alias unq="sudo xattr -rd com.apple.quarantine"
|
||||
|
||||
alias weather="curl -4 http://wttr.in/Boston"
|
||||
|
||||
push_ssh_cert() {
|
||||
local _host
|
||||
test -f ~/.ssh/id_rsa.pub || ssh-keygen -t rsa
|
||||
for _host in "$@";
|
||||
do
|
||||
echo $_host
|
||||
ssh $_host 'cat >> ~/.ssh/authorized_keys' < ~/.ssh/id_rsa.pub
|
||||
done
|
||||
}
|
||||
|
||||
# Find the real location of a short URL
|
||||
unshorten() {
|
||||
curl -sIL $1 | sed -n 's/Location: *//p'
|
||||
}
|
||||
|
||||
s3ls() {
|
||||
aws s3 ls s3://$1
|
||||
}
|
||||
@ -191,8 +247,7 @@ docker-bash() {
|
||||
docker exec -ti $1 /bin/bash
|
||||
}
|
||||
|
||||
mkcdir() {
|
||||
mkcd() {
|
||||
mkdir -p -- "$1" &&
|
||||
cd -P -- "$1"
|
||||
}
|
||||
|
||||
|
@ -275,7 +275,7 @@ user_pref("privacy.cpd.passwords", true);
|
||||
user_pref("privacy.cpd.sessions", true);
|
||||
|
||||
user_pref("privacy.donottrackheader.enabled", true);
|
||||
user_pref("privacy.firstparty.isoloate", true);
|
||||
// user_pref("privacy.firstparty.isolate", true); breaks CAPTCHAs, way too annoying
|
||||
// user_pref("privacy.resistFingerprinting", true); less breakage by using https://addons.mozilla.org/en-US/firefox/addon/canvasblocker/
|
||||
|
||||
user_pref("browser.contentblocking.rejecttrackers.reportBreakage.enabled", false);
|
||||
@ -296,8 +296,8 @@ user_pref("security.dialog_enable_delay", 0);
|
||||
user_pref("security.fileuri.strict_origin_policy", true);
|
||||
user_pref("security.insecure_connection_icon.enabled", true);
|
||||
user_pref("security.insecure_field_warning.contextual.enabled", true);
|
||||
user_pref("security.mixed_content.block_display_content", true);
|
||||
user_pref("security.mixed_content.block_object_subrequest", true);
|
||||
// user_pref("security.mixed_content.block_display_content", true); // breaks xfinity on demand
|
||||
// user_pref("security.mixed_content.block_object_subrequest", true); // breaks xfinity on demand
|
||||
|
||||
user_pref("security.OCSP.enabled", 1);
|
||||
user_pref("security.ssl.enable_ocsp_stapling", true);
|
||||
|
376
iterm.json
Normal file
376
iterm.json
Normal file
@ -0,0 +1,376 @@
|
||||
{
|
||||
"Thin Strokes" : 3,
|
||||
"Working Directory" : "\/Users\/jake",
|
||||
"Prompt Before Closing 2" : false,
|
||||
"Selected Text Color" : {
|
||||
"Green Component" : 1,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 1
|
||||
},
|
||||
"Rows" : 45,
|
||||
"Ansi 11 Color" : {
|
||||
"Green Component" : 0.82281720845913986,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.25792301594327316
|
||||
},
|
||||
"Use Italic Font" : true,
|
||||
"Foreground Color" : {
|
||||
"Green Component" : 0.98048108816146851,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.95548701286315918
|
||||
},
|
||||
"Right Option Key Sends" : 0,
|
||||
"Character Encoding" : 4,
|
||||
"Selection Color" : {
|
||||
"Green Component" : 0.16498950123786926,
|
||||
"Red Component" : 0,
|
||||
"Blue Component" : 0.23076923191547394
|
||||
},
|
||||
"Mouse Reporting" : true,
|
||||
"Ansi 4 Color" : {
|
||||
"Green Component" : 0.55481654405593872,
|
||||
"Red Component" : 0,
|
||||
"Blue Component" : 0.97294086217880249
|
||||
},
|
||||
"Non-ASCII Anti Aliased" : true,
|
||||
"Sync Title" : false,
|
||||
"Disable Window Resizing" : true,
|
||||
"Description" : "Default",
|
||||
"Close Sessions On End" : true,
|
||||
"Jobs to Ignore" : [
|
||||
"rlogin",
|
||||
"ssh",
|
||||
"slogin",
|
||||
"telnet"
|
||||
],
|
||||
"Scrollback Lines" : 0,
|
||||
"Hide After Opening" : false,
|
||||
"Flashing Bell" : false,
|
||||
"Cursor Guide Color" : {
|
||||
"Red Component" : 0.70213186740875244,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 1,
|
||||
"Alpha Component" : 0.25,
|
||||
"Green Component" : 0.9268307089805603
|
||||
},
|
||||
"BM Growl" : true,
|
||||
"Ansi 3 Color" : {
|
||||
"Green Component" : 0.72656995058059692,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0
|
||||
},
|
||||
"Use Non-ASCII Font" : false,
|
||||
"Link Color" : {
|
||||
"Red Component" : 0,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.73423302173614502,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.35916060209274292
|
||||
},
|
||||
"Shortcut" : "",
|
||||
"Background Image Location" : "",
|
||||
"Bold Color" : {
|
||||
"Red Component" : 0.73150634765625,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.73150634765625,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.73150634765625
|
||||
},
|
||||
"Unlimited Scrollback" : true,
|
||||
"Custom Command" : "No",
|
||||
"Smart Selection Rules" : [
|
||||
{
|
||||
"notes" : "Word bounded by whitespace",
|
||||
"regex" : "\\S+",
|
||||
"precision" : "low"
|
||||
},
|
||||
{
|
||||
"notes" : "C++ namespace::identifier",
|
||||
"regex" : "([a-zA-Z0-9_]+::)+[a-zA-Z0-9_]+",
|
||||
"precision" : "normal"
|
||||
},
|
||||
{
|
||||
"notes" : "Paths",
|
||||
"regex" : "\\~?\/?([[:letter:][:number:]._-]+\/+)+[[:letter:][:number:]._-]+\/?",
|
||||
"precision" : "normal"
|
||||
},
|
||||
{
|
||||
"notes" : "Quoted string",
|
||||
"regex" : "@?\"(?:[^\"\\\\]|\\\\.)*\"",
|
||||
"precision" : "normal"
|
||||
},
|
||||
{
|
||||
"notes" : "Java\/Python include paths",
|
||||
"regex" : "([[:letter:][:number:]._]+\\.)+[[:letter:][:number:]._]+",
|
||||
"precision" : "normal"
|
||||
},
|
||||
{
|
||||
"notes" : "mailto URL",
|
||||
"regex" : "\\bmailto:([a-z0-9A-Z_]+@)?([a-zA-Z0-9\\-]+\\.)*[a-zA-Z0-9\\-]+\\b",
|
||||
"precision" : "normal"
|
||||
},
|
||||
{
|
||||
"notes" : "Obj-C selector",
|
||||
"regex" : "@selector\\([^)]+\\)",
|
||||
"precision" : "high"
|
||||
},
|
||||
{
|
||||
"notes" : "email address",
|
||||
"regex" : "\\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}\\b",
|
||||
"precision" : "high"
|
||||
},
|
||||
{
|
||||
"notes" : "HTTP URL",
|
||||
"regex" : "https?:\/\/([a-z0-9A-Z]+(:[a-zA-Z0-9]+)?@)?([a-z0-9A-Z][-a-z0-9A-Z]*\\.)+[A-Za-z][-A-Za-z]*((:[0-9]+)?)(\/[a-zA-Z0-9;\/\\.\\-_+%?&@=#\\(\\)~]*)?",
|
||||
"precision" : "very_high"
|
||||
},
|
||||
{
|
||||
"notes" : "SSH URL",
|
||||
"precision" : "very_high",
|
||||
"regex" : "\\bssh:([a-z0-9A-Z_]+@)?([a-zA-Z0-9\\-]+\\.)*[a-zA-Z0-9\\-]+\\b",
|
||||
"actions" : [
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"notes" : "Telnet URL",
|
||||
"regex" : "\\btelnet:([a-z0-9A-Z_]+@)?([a-zA-Z0-9\\-]+\\.)*[a-zA-Z0-9\\-]+\\b",
|
||||
"precision" : "very_high"
|
||||
}
|
||||
],
|
||||
"Keyboard Map" : {
|
||||
"0x5e-0x60000" : {
|
||||
"Text" : "0x1e",
|
||||
"Action" : 11
|
||||
},
|
||||
"0xf702-0x280000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "b"
|
||||
},
|
||||
"0xf702-0x260000" : {
|
||||
"Text" : "0x1b 0x1b 0x5b 0x44",
|
||||
"Action" : 11
|
||||
},
|
||||
"0xf703-0x280000" : {
|
||||
"Action" : 10,
|
||||
"Text" : "f"
|
||||
},
|
||||
"0xf70a-0x20000" : {
|
||||
"Text" : "[28~",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf703-0x260000" : {
|
||||
"Text" : "[C",
|
||||
"Action" : 10
|
||||
},
|
||||
"0x2d-0x40000" : {
|
||||
"Text" : "0x1f",
|
||||
"Action" : 11
|
||||
},
|
||||
"0xf702-0x220000" : {
|
||||
"Text" : "[D",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf703-0x240000" : {
|
||||
"Text" : "[5C",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf703-0x220000" : {
|
||||
"Text" : "[C",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf700-0x280000" : {
|
||||
"Text" : "[A",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf72b-0x20000" : {
|
||||
"Text" : "[F",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf700-0x260000" : {
|
||||
"Text" : "[A",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf701-0x280000" : {
|
||||
"Text" : "[B",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf700-0x240000" : {
|
||||
"Text" : "[A",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf701-0x260000" : {
|
||||
"Text" : "[B",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf700-0x220000" : {
|
||||
"Text" : "[A",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf701-0x240000" : {
|
||||
"Text" : "[B",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf72b-0x40000" : {
|
||||
"Text" : "",
|
||||
"Action" : 4
|
||||
},
|
||||
"0xf708-0x20000" : {
|
||||
"Text" : "[25~",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf701-0x220000" : {
|
||||
"Text" : "[B",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf709-0x20000" : {
|
||||
"Text" : "[26~",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf70b-0x20000" : {
|
||||
"Text" : "[29~",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf702-0x240000" : {
|
||||
"Text" : "[5D",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf729-0x20000" : {
|
||||
"Text" : "[H",
|
||||
"Action" : 10
|
||||
},
|
||||
"0xf729-0x40000" : {
|
||||
"Text" : "",
|
||||
"Action" : 5
|
||||
}
|
||||
},
|
||||
"Ansi 14 Color" : {
|
||||
"Green Component" : 1,
|
||||
"Red Component" : 0.4042010611351281,
|
||||
"Blue Component" : 0.94094775504779782
|
||||
},
|
||||
"Ansi 2 Color" : {
|
||||
"Green Component" : 0.88189995288848877,
|
||||
"Red Component" : 0.54928803443908691,
|
||||
"Blue Component" : 0.04123397171497345
|
||||
},
|
||||
"Send Code When Idle" : false,
|
||||
"ASCII Anti Aliased" : true,
|
||||
"Tags" : [
|
||||
|
||||
],
|
||||
"Ansi 9 Color" : {
|
||||
"Green Component" : 0.15470406080870669,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.24923402424592656
|
||||
},
|
||||
"Use Bold Font" : true,
|
||||
"Silence Bell" : false,
|
||||
"Ansi 12 Color" : {
|
||||
"Green Component" : 0.5733030673510271,
|
||||
"Red Component" : 0.00053359762918048226,
|
||||
"Blue Component" : 1
|
||||
},
|
||||
"Window Type" : 0,
|
||||
"Allow Title Reporting" : false,
|
||||
"Use Bright Bold" : true,
|
||||
"Has Hotkey" : false,
|
||||
"Cursor Text Color" : {
|
||||
"Green Component" : 0,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.0940093994140625
|
||||
},
|
||||
"Default Bookmark" : "No",
|
||||
"Cursor Color" : {
|
||||
"Green Component" : 0,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.0940093994140625
|
||||
},
|
||||
"Ansi 1 Color" : {
|
||||
"Green Component" : 0,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 0.058871746063232422
|
||||
},
|
||||
"Name" : "JJ-ZSH",
|
||||
"Blinking Cursor" : true,
|
||||
"Guid" : "1BD702E0-FFE5-4C92-8E09-EA2D91B8306E",
|
||||
"Ansi 8 Color" : {
|
||||
"Green Component" : 0.26696832579185525,
|
||||
"Red Component" : 0.26696832579185525,
|
||||
"Blue Component" : 0.26696832579185525
|
||||
},
|
||||
"Ansi 10 Color" : {
|
||||
"Green Component" : 0.88189995290000001,
|
||||
"Red Component" : 0.67126059688058637,
|
||||
"Blue Component" : 0.35646489677720017
|
||||
},
|
||||
"Idle Code" : 0,
|
||||
"Badge Color" : {
|
||||
"Red Component" : 1,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0,
|
||||
"Alpha Component" : 0.5,
|
||||
"Green Component" : 0.1491314172744751
|
||||
},
|
||||
"Ambiguous Double Width" : false,
|
||||
"Blur Radius" : 7.3643559644670038,
|
||||
"Cursor Type" : 1,
|
||||
"Ansi 0 Color" : {
|
||||
"Green Component" : 0.13574660633484159,
|
||||
"Red Component" : 0.13574660633484159,
|
||||
"Blue Component" : 0.13574660633484159
|
||||
},
|
||||
"Session Close Undo Timeout" : 15,
|
||||
"Blur" : true,
|
||||
"Normal Font" : "MesloLGMForPowerline-Regular 13",
|
||||
"Vertical Spacing" : 1.0669062970632528,
|
||||
"Ansi 7 Color" : {
|
||||
"Green Component" : 1,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 1
|
||||
},
|
||||
"Command" : "",
|
||||
"Terminal Type" : "xterm-256color",
|
||||
"Horizontal Spacing" : 1,
|
||||
"Option Key Sends" : 2,
|
||||
"Only The Default BG Color Uses Transparency" : false,
|
||||
"Ansi 15 Color" : {
|
||||
"Green Component" : 1,
|
||||
"Red Component" : 1,
|
||||
"Blue Component" : 1
|
||||
},
|
||||
"Open Toolbelt" : false,
|
||||
"Unicode Version" : 8,
|
||||
"Ansi 6 Color" : {
|
||||
"Green Component" : 0.84575581550598145,
|
||||
"Red Component" : 0,
|
||||
"Blue Component" : 0.92260181903839111
|
||||
},
|
||||
"Transparency" : 0.10079314720812182,
|
||||
"Background Color" : {
|
||||
"Red Component" : 0.062745098039215685,
|
||||
"Color Space" : "sRGB",
|
||||
"Blue Component" : 0.12941176470588237,
|
||||
"Alpha Component" : 1,
|
||||
"Green Component" : 0.074509803921568626
|
||||
},
|
||||
"Screen" : -1,
|
||||
"Bound Hosts" : [
|
||||
|
||||
],
|
||||
"Non Ascii Font" : "Monaco 12",
|
||||
"Ansi 13 Color" : {
|
||||
"Green Component" : 0.37417232689266022,
|
||||
"Red Component" : 0.60504487800788187,
|
||||
"Blue Component" : 0.92307692307692313
|
||||
},
|
||||
"Columns" : 115,
|
||||
"Visual Bell" : true,
|
||||
"ASCII Ligatures" : true,
|
||||
"Ansi 5 Color" : {
|
||||
"Green Component" : 0.26314744353294373,
|
||||
"Red Component" : 0.42564234137535095,
|
||||
"Blue Component" : 0.65052211284637451
|
||||
},
|
||||
"Custom Directory" : "No"
|
||||
}
|
@ -1,4 +1,24 @@
|
||||
[
|
||||
{
|
||||
"metadata": {
|
||||
"id": "819a23e1-b6c6-41cf-9029-e653b537d996",
|
||||
"publisherId": "ms-vscode.azure-account",
|
||||
"publisherDisplayName": "ms-vscode"
|
||||
},
|
||||
"name": "azure-account",
|
||||
"publisher": "ms-vscode",
|
||||
"version": "0.8.4"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "464f4ac7-af65-4aa9-9907-4ba7fa419085",
|
||||
"publisherId": "bungcip.better-toml",
|
||||
"publisherDisplayName": "bungcip"
|
||||
},
|
||||
"name": "better-toml",
|
||||
"publisher": "bungcip",
|
||||
"version": "0.3.2"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
|
||||
@ -7,37 +27,7 @@
|
||||
},
|
||||
"name": "code-settings-sync",
|
||||
"publisher": "Shan",
|
||||
"version": "2.9.0"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "690b692e-e8a9-493f-b802-8089d50ac1b2",
|
||||
"publisherId": "ms-vscode.cpptools",
|
||||
"publisherDisplayName": "ms-vscode"
|
||||
},
|
||||
"name": "cpptools",
|
||||
"publisher": "ms-vscode",
|
||||
"version": "0.15.0"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
|
||||
"publisherId": "msjsdiag.debugger-for-chrome",
|
||||
"publisherDisplayName": "msjsdiag"
|
||||
},
|
||||
"name": "debugger-for-chrome",
|
||||
"publisher": "msjsdiag",
|
||||
"version": "4.2.1"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "5960f38e-0bbe-4644-8f9c-9c8824e82511",
|
||||
"publisherId": "donjayamanne.githistory",
|
||||
"publisherDisplayName": "donjayamanne"
|
||||
},
|
||||
"name": "githistory",
|
||||
"publisher": "donjayamanne",
|
||||
"version": "0.4.0"
|
||||
"version": "3.3.1"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
@ -47,7 +37,7 @@
|
||||
},
|
||||
"name": "jshint",
|
||||
"publisher": "dbaeumer",
|
||||
"version": "0.10.17"
|
||||
"version": "0.10.20"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
@ -57,27 +47,7 @@
|
||||
},
|
||||
"name": "material-icon-theme",
|
||||
"publisher": "PKief",
|
||||
"version": "3.2.6"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "5e69f001-f945-4c97-baf0-320d82a153b3",
|
||||
"publisherId": "felixfbecker.php-intellisense",
|
||||
"publisherDisplayName": "felixfbecker"
|
||||
},
|
||||
"name": "php-intellisense",
|
||||
"publisher": "felixfbecker",
|
||||
"version": "2.3.0"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "85e57fc6-8e21-4402-8e66-af4155fbb5d2",
|
||||
"publisherId": "qinjia.seti-icons",
|
||||
"publisherDisplayName": "qinjia"
|
||||
},
|
||||
"name": "seti-icons",
|
||||
"publisher": "qinjia",
|
||||
"version": "0.1.3"
|
||||
"version": "3.8.0"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
@ -87,26 +57,36 @@
|
||||
},
|
||||
"name": "slime",
|
||||
"publisher": "smlombardi",
|
||||
"version": "2.31.2"
|
||||
"version": "2.34.0"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "e2c479df-2c90-4915-9015-595ef0d79bd5",
|
||||
"publisherId": "ms-vsts.team",
|
||||
"publisherDisplayName": "ms-vsts"
|
||||
},
|
||||
"name": "team",
|
||||
"publisher": "ms-vsts",
|
||||
"version": "1.149.2"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "0479fc1c-3d67-49f9-b087-fb9069afe48f",
|
||||
"publisherId": "PeterJausovec.vscode-docker",
|
||||
"publisherDisplayName": "PeterJausovec"
|
||||
"publisherId": "ms-azuretools.vscode-docker",
|
||||
"publisherDisplayName": "ms-azuretools"
|
||||
},
|
||||
"name": "vscode-docker",
|
||||
"publisher": "PeterJausovec",
|
||||
"version": "0.0.25"
|
||||
"publisher": "ms-azuretools",
|
||||
"version": "0.6.4"
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"id": "ae9e3eb0-3357-4cc0-90ee-598d2d384757",
|
||||
"publisherId": "eg2.vscode-npm-script",
|
||||
"publisherDisplayName": "eg2"
|
||||
"id": "5a6dc0d5-dc02-4121-8e24-cad33a2ff0af",
|
||||
"publisherId": "ms-vsliveshare.vsliveshare",
|
||||
"publisherDisplayName": "ms-vsliveshare"
|
||||
},
|
||||
"name": "vscode-npm-script",
|
||||
"publisher": "eg2",
|
||||
"version": "0.3.3"
|
||||
"name": "vsliveshare",
|
||||
"publisher": "ms-vsliveshare",
|
||||
"version": "1.0.488"
|
||||
}
|
||||
]
|
@ -1,5 +1 @@
|
||||
// Place your key bindings in this file to overwrite the defaults
|
||||
[
|
||||
{ "key": "ctrl+tab", "command": "workbench.action.nextEditor" },
|
||||
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" }
|
||||
]
|
||||
// Empty
|
||||
|
6
vscode/keybindingsMac.json
Normal file
6
vscode/keybindingsMac.json
Normal file
@ -0,0 +1,6 @@
|
||||
// Place your key bindings in this file to overwrite the defaults
|
||||
[
|
||||
|
||||
{ "key": "ctrl+tab", "command": "workbench.action.nextEditor" },
|
||||
{ "key": "ctrl+shift+tab", "command": "workbench.action.previousEditor" }
|
||||
]
|
@ -1,9 +1,40 @@
|
||||
// Place your settings in this file to overwrite the default settings
|
||||
{
|
||||
"workbench.colorTheme": "Slime",
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"editor.fontFamily": "Source Code Pro, Menlo, Monaco, 'Courier New', monospace",
|
||||
"editor.fontSize": 14.5,
|
||||
"editor.cursorStyle": "line",
|
||||
"extensions.autoUpdate": false
|
||||
"sync.gist": "80a04530e0142ff5b7b77c92d5c6f526",
|
||||
"sync.autoDownload": false,
|
||||
"sync.autoUpload": false,
|
||||
"sync.forceDownload": false,
|
||||
"sync.quietSync": false,
|
||||
"sync.askGistName": false,
|
||||
"extensions.autoUpdate": true,
|
||||
"sync.removeExtensions": true,
|
||||
"sync.syncExtensions": true,
|
||||
"window.zoomLevel": 0,
|
||||
"team.showWelcomeMessage": false,
|
||||
"workbench.colorCustomizations": {},
|
||||
"workbench.colorTheme": "Slime",
|
||||
"editor.minimap.enabled": false,
|
||||
"workbench.enableExperiments": false,
|
||||
"workbench.quickOpen.preserveInput": true,
|
||||
"workbench.startupEditor": "none",
|
||||
"workbench.statusBar.feedback.visible": false,
|
||||
"breadcrumbs.enabled": true,
|
||||
"workbench.editor.openPositioning": "last",
|
||||
"workbench.editor.tabSizing": "shrink",
|
||||
"workbench.settings.enableNaturalLanguageSearch": false,
|
||||
"terminal.external.osxExec": "iTerm.app",
|
||||
"telemetry.enableCrashReporter": false,
|
||||
"telemetry.enableTelemetry": false,
|
||||
"team.appInsights.enabled": false,
|
||||
"html.autoClosingTags": false,
|
||||
"html.format.indentInnerHtml": true,
|
||||
"css.lint.important": "warning",
|
||||
"css.lint.unknownVendorSpecificProperties": "warning",
|
||||
"css.lint.zeroUnits": "warning",
|
||||
"git.enableCommitSigning": true,
|
||||
"git.showPushSuccessNotification": true
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user