From 902d0c9406ad97644a4c9026b9504a447747a971 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 28 May 2025 18:46:08 +0000 Subject: [PATCH 1/5] chore(docker): remove unused environment variable --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index b6dda0b..180b2ba 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,6 @@ services: entrypoint: sleep command: infinity environment: - ANTHROPIC_API_KEY: ${NVIM_ANTHROPIC_API_KEY:-no-api} GH_TOKEN: &github_token ${NVIM_GH_TOKEN:-no-token} GITHUB_TOKEN: *github_token COMPOSE_BAKE: 'true' -- 2.47.2 From 71cbbd2b2b2853d34d7c9b63294c50af0b2986d0 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 28 May 2025 18:46:20 +0000 Subject: [PATCH 2/5] chore(docker): add volume for supermaven configuration --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 180b2ba..d3496bf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,6 +32,7 @@ services: - 'home_local_share:/home/coder/.local/share' - 'home_local_state:/home/coder/.local/state' - 'home_plugins_tmux:/home/coder/.config/tmux/plugins' + - 'home_supermaven:/home/coder/.supermaven' chroma: image: 'ghcr.io/chroma-core/chroma:1.0.10' @@ -51,4 +52,5 @@ volumes: home_local_share: {} home_local_state: {} home_plugins_tmux: {} + home_supermaven: {} chroma_data: {} -- 2.47.2 From cfe25c4dfa74c50241db79ebd0f56a39343ac652 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 28 May 2025 18:46:40 +0000 Subject: [PATCH 3/5] chore: fix format in 24-bit-color script --- scripts/24-bit-color.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/24-bit-color.sh b/scripts/24-bit-color.sh index 01236b4..e425d8f 100755 --- a/scripts/24-bit-color.sh +++ b/scripts/24-bit-color.sh @@ -23,7 +23,7 @@ resetOutput() # $red $green and $blue are integers # ranging between 0 and 255 inclusive rainbowColor() -{ +{ let h=$1/43 let f=$1-43*$h let t=$f*255/43 -- 2.47.2 From 568b76b83313c3fbcdafff4d64094b6db82ee077 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 28 May 2025 18:47:03 +0000 Subject: [PATCH 4/5] chore: configure editor through `editorconfig` --- .editorconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3a45996 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[Makefile] +indent_style = tab +indent_size = 4 + +[*.lua] +indent_style = space +indent_size = 2 +quote_style = single + +[*.md] +trim_trailing_whitespace = false +max_line_length = 80 + +[*.sh] +indent_style = tab +indent_size = 4 + +[*.yml] +indent_style = space +indent_size = 2 -- 2.47.2 From 12d012a76bed1243bf08a6ec3c6a9ceda707c031 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Wed, 28 May 2025 18:47:26 +0000 Subject: [PATCH 5/5] chore: access local raspberry pi cluster --- config/tmuxp/rpi.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config/tmuxp/rpi.yml diff --git a/config/tmuxp/rpi.yml b/config/tmuxp/rpi.yml new file mode 100644 index 0000000..4552d9c --- /dev/null +++ b/config/tmuxp/rpi.yml @@ -0,0 +1,14 @@ +--- +session_name: rpi +start_directory: /opt/personal +windows: + - window_name: rpi + focus: true + layout: tiled + start_directory: labs + panes: + - focus: true + shell_command: ssh rpi00 + - shell_command: ssh rpi01 + - shell_command: ssh rpi02 + - shell_command: ssh rpi03 -- 2.47.2