From fa409159c02d7252d3bc6a01e25d1bd6dac69dd4 Mon Sep 17 00:00:00 2001 From: b3nj4m1n Date: Sat, 5 Nov 2022 04:15:28 +0100 Subject: [PATCH] Add matplotlib, terraform and ts-node Closes #132 --- programs/matplotlib.json | 10 ++++++++++ programs/terraform.json | 10 ++++++++++ programs/ts-node.json | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 programs/matplotlib.json create mode 100644 programs/terraform.json create mode 100644 programs/ts-node.json diff --git a/programs/matplotlib.json b/programs/matplotlib.json new file mode 100644 index 00000000..c7449000 --- /dev/null +++ b/programs/matplotlib.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "help": "Matplotlib will use _XDG_CONFIG_HOME/matplotlib_ and _XDG_CACHE_HOME/matplotlib_ on linux by default if the directories are writable.\n\nYou can also set the _MPLCONFIGDIR_ environment variable, see the [documentation](https://matplotlib.org/stable/users/faq/environment_variables_faq.html#envvar-MPLCONFIGDIR).\n", + "movable": true, + "path": "$HOME/.matplotlib" + } + ], + "name": "matplotlib" +} \ No newline at end of file diff --git a/programs/terraform.json b/programs/terraform.json new file mode 100644 index 00000000..841d9940 --- /dev/null +++ b/programs/terraform.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "help": "Currently unsupported.\n\n_Relevant issue:_ https://github.com/hashicorp/terraform/pull/31952\n", + "movable": false, + "path": "$HOME/.terraform.d" + } + ], + "name": "terraform" +} \ No newline at end of file diff --git a/programs/ts-node.json b/programs/ts-node.json new file mode 100644 index 00000000..e4dea314 --- /dev/null +++ b/programs/ts-node.json @@ -0,0 +1,10 @@ +{ + "files": [ + { + "help": "Export the following environment variables:\n\n```bash\nexport TS_NODE_HISTORY=\"$XDG_STATE_HOME\"/ts_node_repl_history\n```\n", + "movable": true, + "path": "$HOME/.ts_node_repl_history" + } + ], + "name": "ts-node" +} \ No newline at end of file