From cc9ff2d16e1e0327f17a30c73430e9d84baa9968 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Sun, 1 Oct 2023 23:32:04 +0000 Subject: [PATCH] chore: upgrade rtx plugins Also use default plugins for: * go * node * python --- Dockerfile | 6 ++++-- config/rtx/config.toml | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dd3ed9a..6bfc8d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -137,11 +137,13 @@ RUN git clone https://github.com/NvChad/NvChad.git ~/.config/nvim \ && echo '{$XDG_DATA_HOME}/rtx/bin/rtx activate fish | source' >> ${XDG_CONFIG_HOME}/fish/config.fish \ && echo 'zoxide init fish | source' >> ${XDG_CONFIG_HOME}/fish/config.fish +# install rtx plugins RUN ${XDG_DATA_HOME}/rtx/bin/rtx plugins install \ + awscli \ elixir \ erlang \ - kubectl \ - awscli \ helm \ + jq \ + kubectl \ poetry \ terraform diff --git a/config/rtx/config.toml b/config/rtx/config.toml index a58cda4..c751f66 100644 --- a/config/rtx/config.toml +++ b/config/rtx/config.toml @@ -4,7 +4,9 @@ elixir = "1.15.4-otp-26" erlang = "26.0.2" go = "1.20.6" helm = "3.12.2" +jq = "1.7" kubectl = "1.27.4" +node = "20.6.1" poetry = "1.5.1" python = "3.11.4" terraform = "1.5.4"