diff --git a/documentation/src/SUMMARY.md b/documentation/src/SUMMARY.md index 64d359e..022e8f7 100644 --- a/documentation/src/SUMMARY.md +++ b/documentation/src/SUMMARY.md @@ -28,4 +28,5 @@ # Miscellaneous - [Fish configuration](./misc_fish.md) + - [VS Code configuration](./misc_vscode.md) - [TODO](./misc_todo.md) \ No newline at end of file diff --git a/documentation/src/misc_vscode.md b/documentation/src/misc_vscode.md new file mode 100644 index 0000000..8a6ca8d --- /dev/null +++ b/documentation/src/misc_vscode.md @@ -0,0 +1,12 @@ +# VS Code configuration + +You can install the `Action Buttons` extension and add the following command: +```json +{ + "name": "$(triangle-right) Run Notes", + "color": "green", + "singleInstance": true, + "command": "notes ${fileBasename}", +} +``` +This will provide a button to compile the current file. \ No newline at end of file