This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIkJJSrI5HmPYQdB5OjP7y1Urjcjj/rF4b+fhOtzqbeg4rn5Ul2jbhE5HYY5ARccTaqV7BXdBu8/gvijKpQf2HQ= pclin@842f578591cb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| maximize = true | |
| clipboard-write = allow | |
| font-feature = -calt | |
| theme = nightfox | |
| keybind = global:ctrl+grave_accent=toggle_quick_terminal | |
| quick-terminal-autohide = true | |
| # quick-terminal-size = 50% | |
| background-opacity = 0.95 | |
| background-blur = true | |
| font-family = "Jetbrains Mono" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| devup() { | |
| git submodule update --init --recursive | |
| local container_id=$(docker ps -aq --filter "label=devcontainer.local_folder=$(pwd)") | |
| if [[ -z "$container_id" ]]; then | |
| # No container exists, create it | |
| devcontainer up --workspace-folder . --skip-post-create | |
| container_id=$(docker ps -aq --filter "label=devcontainer.local_folder=$(pwd)") | |
| elif [[ -z $(docker ps -q --filter "id=$container_id") ]]; then |