From 4be0d089d79726ddd108c6ad99550dc1731d07aa Mon Sep 17 00:00:00 2001 From: Felipe Marques de Almeida Date: Thu, 17 Mar 2022 12:14:15 +0000 Subject: [PATCH] add gitpod config --- .gitpod.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..c103dc9a --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,26 @@ +image: nfcore/gitpod:latest + +tasks: + - before: | + wget -qO- get.nextflow.io | bash + chmod 777 nextflow + sudo mv nextflow /usr/local/bin/ + pip install tiptop + pip install nf-core + +vscode: + extensions: # based on nf-core.nf-core-extensionpack + - codezombiech.gitignore # Language support for .gitignore files + # - cssho.vscode-svgviewer # SVG viewer + - davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code + - eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed + - EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files + - Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar + - mechatroner.rainbow-csv # Highlight columns in csv files in different colors + # - nextflow.nextflow # Nextflow syntax highlighting + - oderwat.indent-rainbow # Highlight indentation level + - streetsidesoftware.code-spell-checker # Spelling checker for source code + +ports: + - port: 3000 + onOpen: open-preview \ No newline at end of file