-
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
13e68df
commit 8b86719
Showing
160 changed files
with
1,510 additions
and
1,463 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,10 @@ | |
path = modules/dotlink | ||
url = [email protected]:denisidoro/dotlink.git | ||
shallow = true | ||
ignore = dirty | ||
|
||
[submodule "modules/zimfw"] | ||
path = modules/zimfw | ||
url = [email protected]:zimfw/zimfw.git | ||
shallow = true | ||
|
||
[submodule "modules/z.lua"] | ||
path = modules/z.lua | ||
url = [email protected]:skywind3000/z.lua.git | ||
shallow = true | ||
ignore = dirty |
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,13 @@ | ||
#!/usr/bin/env bash | ||
# vim: filetype=sh | ||
set -euo pipefail | ||
|
||
export dot_bin_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" | ||
|
||
##? A hub for an all-purpose set of scripts, using navi | ||
#?? 0.1.0 | ||
##? | ||
##? Usage: | ||
##? dot <context> <cmd> [<args>...] | ||
|
||
"${dot_bin_dir}/dot" git "$@" |
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,4 @@ | ||
% bash | ||
|
||
# cheat.sh for command | ||
curl "cheat.sh/<command>" |
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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
% brew, cask | ||
|
||
# get info for a package | ||
# Get info for a package | ||
brew info <package> | ||
|
||
# get info for a cask | ||
# Get info for a cask | ||
brew cask info <casks> | ||
|
||
# install a package | ||
# Install a package | ||
brew install <package> | ||
|
||
# install a cask | ||
# Install a cask | ||
brew cask install <casks> | ||
|
||
# uninstall a package | ||
# Uninstall a package | ||
brew uninstall <installed> | ||
|
||
# uninstall a cask | ||
brew cask uninstall <caskinstalled> | ||
# Uninstall a cask | ||
brew cask uninstall <installed_cask> | ||
|
||
# edit package | ||
# Edit package | ||
brew edit <package> | ||
|
||
# edit cask | ||
# Edit cask | ||
brew cask edit <casks> | ||
|
||
$ package: brew search | ||
$ casks: brew search --casks | ||
$ installed: brew list | ||
$ caskinstalled: brew cask list | ||
$ installed_cask: brew cask list |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
% clojure, clj | ||
|
||
# Start a Clojure REPL using deps aliases | ||
clj "-A:${alias}" | ||
clj "-A:<alias>" | ||
|
||
$ alias: cat "${HOME}/.clojure/deps.edn" | dot clojure data -o json | jq -r '.aliases | keys | .[]' |
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 |
---|---|---|
|
@@ -2,3 +2,6 @@ | |
|
||
# Beautify source code | ||
dot code beautify <path> | ||
|
||
# Search for cheatsheets | ||
curl -s "https://cheat.sh/<query>" |
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,6 @@ | ||
% editor, vscode | ||
|
||
# List VSCode commands | ||
echo "<vscode_action>" | ||
|
||
$ vscode_action: curl -sL "https://raw.githubusercontent.com/aburok/mysettings/master/VisualStudio/vscommands.txt" |
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
Oops, something went wrong.