You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
9.[startnewtask](#startnewtask) - creates and starts a new [Taskwarrior](https://github.com/GothenburgBitFactory/taskwarrior) task
15
+
10.[stoptasks](#stoptasks) - stops all active [Taskwarrior](https://github.com/GothenburgBitFactory/taskwarrior) tasks
16
+
11.[taskinfo](#taskinfo) - prints the attribute of a [Taskwarrior](https://github.com/GothenburgBitFactory/taskwarrior) task
16
17
17
18
## Installation
18
19
You need to first [install Babashka](https://github.com/babashka/babashka#quickstart).
@@ -34,6 +35,24 @@ Outputs the names of all the accounts used in a [Ledger](https://github.com/ledg
34
35
### [cljminimal](./cljminimal.clj)
35
36
A script to create an ultraminimal clj project with an empty deps.edn and a singular hello world main function. To use, simply call `cljminimal my-minimal-clj-project` and a project called `my-minimal-clj-project` will be created for you. Mainly used for quick hacking and throwaway prototyping.
36
37
38
+
### [depo](./depo.clj)
39
+
Adds dependencies to Clojure projects. To use, run the script at the root of a project containing a `deps.edn`, `project.clj` or `shadow-cljs.edn` file. If multiple config files are present, the first config file in the order of `deps`,`project`,`shadow-cljs` will be selected.
40
+
#### Usage
41
+
```sh
42
+
depo add reagent
43
+
# Added [reagent "1.2.0"]
44
+
```
45
+
If multiple config files are present, you can use `-f` to specify which file to add a dependency to.
46
+
```sh
47
+
depo add reagent -f deps.edn
48
+
# Added {reagent/reagent {:mvn/version 1.2.0}}
49
+
```
50
+
You can also specify a version.
51
+
```sh
52
+
depo add reagent 1.1.0
53
+
# Added [reagent "1.1.0"]
54
+
```
55
+
37
56
### [jrun](./jrun.clj)
38
57
Compiles and runs a single java file. Mainly used for quick iteration of ideas. For example, you can run it in Vim with `:!jrun App.java` and see the output in a Vim buffer without leaving your current buffer.
0 commit comments