From c5451471cccb51ccab093c070c08ad40abf7ba3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Dubas?= Date: Thu, 26 Oct 2023 00:01:50 +0000 Subject: [PATCH] chore: upgrade elixir/erlang versions (#4) Upgrade runtimes to latest versions: * elixir from 1.15.4 to 1.15.6 * erlang from 26.0.2 to 26.1.1 Co-authored-by: Joao P Dubas Reviewed-on: https://gitea.dubas.dev/joao.dubas/ide/pulls/4 --- config/nvim/lua/custom/plugins/init.lua | 4 +++- config/rtx/config.toml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/config/nvim/lua/custom/plugins/init.lua b/config/nvim/lua/custom/plugins/init.lua index 13d57c3..31f9d26 100644 --- a/config/nvim/lua/custom/plugins/init.lua +++ b/config/nvim/lua/custom/plugins/init.lua @@ -85,7 +85,9 @@ return { python = require('iron.fts.python').ipython, typescript = require('iron.fts.typescript').ts } - } + }, + highlight = { italic = true }, + ignore_blank_lines = true }) end }, diff --git a/config/rtx/config.toml b/config/rtx/config.toml index e457419..5fcdb5a 100644 --- a/config/rtx/config.toml +++ b/config/rtx/config.toml @@ -1,7 +1,7 @@ [tools] awscli = "2.13.5" -elixir = "1.15.4-otp-26" -erlang = "26.0.2" +elixir = "1.15.6-otp-26" +erlang = "26.1.1" go = "1.20.6" helm = "3.12.2" kubectl = "1.27.4"