-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35f028f
commit 2aab079
Showing
170 changed files
with
1,254 additions
and
529 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,4 +72,9 @@ | |
pushInsteadOf = "gist:" | ||
|
||
[url "[email protected]:denisidoro/"] | ||
insteadOf = "my:" | ||
insteadOf = "my:" | ||
[credential] | ||
helper = "" | ||
helper = manager-core | ||
[credential "https://dev.azure.com"] | ||
useHttpPath = true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dotfiles/local,dotfiles | ||
miMind/maps,miMind | ||
DraStic/backup,DraStic | ||
dolphin-emu/GC,Dolphin/GC | ||
dolphin-emu/Wii,Dolphin/Wii | ||
Johnemulators/GBC/save,JohnGBC | ||
PSP/SAVEDATA,PPSSPP | ||
MyBoy/save,MyBoy | ||
memento/backup,Memento | ||
RetroArch/saves,RetroArch | ||
citra-emu/sdmc/Nintendo 3DS/00000000000000000000000000000000/00000000000000000000000000000000/title/,Citra |
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
_code() { | ||
local target="${1:-$PWD}" | ||
[[ "$target" == "." ]] && target="$PWD" | ||
[[ "$target" == "$HOME" ]] && echoerr "Can't open the whole home dir in VSCode" && return 1 | ||
|
||
# local full_target | ||
# [[ "$target" == /* ]] && full_target="$target" || full_target="${PWD}/${target}" | ||
|
||
# local cwd | ||
# [[ -d "$full_target" ]] && cwd="$full_target" || cwd="$(dirname "$full_target")" | ||
|
||
# export VSCODE_CWD="$cwd" | ||
# export APP_ROOT="$cwd" | ||
|
||
[[ $# -gt 0 ]] && shift | ||
|
||
local -r osx_path="/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code" | ||
if [ -f "$osx_path" ]; then | ||
"$osx_path" "$target" "$@" | ||
else | ||
command code "$target" "$@" | ||
fi | ||
} | ||
|
||
_code "$@" |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.