├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .github ├── hack │ ├── Dockerfile │ ├── Dockerfile.code-server │ ├── Dockerfile.devcontainer │ └── modules └── workflows │ ├── build.yaml │ └── build.yaml.legacy ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docker ├── base │ └── Dockerfile ├── bin │ ├── connect │ ├── devcontainer-links │ └── entrypoint ├── code-server │ └── Dockerfile ├── docker-in-docker │ └── Dockerfile ├── extra │ └── Dockerfile ├── hugo │ └── Dockerfile ├── neovim │ └── Dockerfile ├── slim-all │ └── Dockerfile ├── slim-dotnet │ └── Dockerfile ├── slim-golang │ └── Dockerfile ├── slim-node │ └── Dockerfile ├── slim-python │ └── Dockerfile └── slim │ ├── Dockerfile │ └── rootfs │ ├── containers │ ├── containers.conf │ └── registries.conf │ ├── docker │ └── registry │ │ └── config.yml │ ├── environment │ ├── etc │ ├── ansible │ │ └── ansible.cfg │ ├── apt │ │ └── apt.conf.d │ │ │ └── 99config │ ├── containers │ │ └── registries.conf │ ├── docker │ │ └── registry │ │ │ └── config.yml │ ├── dpkg │ │ └── dpkg.cfg.d │ │ │ └── 01_noman │ ├── environment │ ├── skel │ │ ├── .Xresources │ │ ├── .actrc │ │ ├── .aws │ │ │ └── .gitkeep │ │ ├── .bash_profile │ │ ├── .bashrc │ │ ├── .config │ │ │ ├── fish │ │ │ │ ├── conf.d │ │ │ │ │ └── omf.fish │ │ │ │ ├── config.fish │ │ │ │ ├── fish_variables │ │ │ │ └── functions │ │ │ │ │ ├── cloc.fish │ │ │ │ │ ├── env.fish │ │ │ │ │ └── k.fish │ │ │ ├── k9s │ │ │ │ └── skin.yml │ │ │ └── starship.toml │ │ ├── .dir_colors │ │ ├── .docker.json │ │ ├── .kube │ │ │ └── .gitkeep │ │ ├── .local │ │ │ ├── bin │ │ │ │ └── .gitkeep │ │ │ └── share │ │ │ │ └── code-server │ │ │ │ └── User │ │ │ │ └── settings.json │ │ ├── .pulumi │ │ │ └── .gitkeep │ │ ├── .tmux.conf │ │ ├── .tmux │ │ │ ├── .gitkeep │ │ │ └── plugins │ │ │ │ └── tpm │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── HOW_TO_PLUGIN.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ ├── clean_plugins │ │ │ │ ├── install_plugins │ │ │ │ └── update_plugins │ │ │ │ ├── bindings │ │ │ │ ├── clean_plugins │ │ │ │ ├── install_plugins │ │ │ │ └── update_plugins │ │ │ │ ├── docs │ │ │ │ ├── automatic_tpm_installation.md │ │ │ │ ├── changing_plugins_install_dir.md │ │ │ │ ├── how_to_create_plugin.md │ │ │ │ ├── managing_plugins_via_cmd_line.md │ │ │ │ └── tpm_not_working.md │ │ │ │ ├── lib │ │ │ │ └── tmux-test │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ ├── run_framework_tests │ │ │ │ │ ├── setup │ │ │ │ │ ├── tests │ │ │ │ │ ├── helpers │ │ │ │ │ │ └── helpers.sh │ │ │ │ │ ├── run_tests_in_isolation │ │ │ │ │ ├── test_basic_script_execution.sh │ │ │ │ │ ├── test_default_session_name.sh │ │ │ │ │ └── test_tmux_scripting.sh │ │ │ │ │ ├── vagrant_centos_provisioning.sh │ │ │ │ │ └── vagrant_ubuntu_provisioning.sh │ │ │ │ ├── scripts │ │ │ │ ├── check_tmux_version.sh │ │ │ │ ├── clean_plugins.sh │ │ │ │ ├── helpers │ │ │ │ │ ├── plugin_functions.sh │ │ │ │ │ ├── shell_echo_functions.sh │ │ │ │ │ ├── tmux_echo_functions.sh │ │ │ │ │ ├── tmux_utils.sh │ │ │ │ │ └── utility.sh │ │ │ │ ├── install_plugins.sh │ │ │ │ ├── source_plugins.sh │ │ │ │ ├── update_plugin.sh │ │ │ │ ├── update_plugin_prompt_handler.sh │ │ │ │ └── variables.sh │ │ │ │ ├── tests │ │ │ │ ├── expect_failed_plugin_download │ │ │ │ ├── expect_successful_clean_plugins │ │ │ │ ├── expect_successful_multiple_plugins_download │ │ │ │ ├── expect_successful_plugin_download │ │ │ │ ├── expect_successful_update_of_a_single_plugin │ │ │ │ ├── expect_successful_update_of_all_plugins │ │ │ │ ├── helpers │ │ │ │ │ └── tpm.sh │ │ │ │ ├── test_plugin_clean.sh │ │ │ │ ├── test_plugin_installation.sh │ │ │ │ ├── test_plugin_installation_legacy.sh │ │ │ │ ├── test_plugin_sourcing.sh │ │ │ │ └── test_plugin_update.sh │ │ │ │ └── tpm │ │ ├── .vim │ │ │ ├── colors │ │ │ │ ├── iceberg.vim │ │ │ │ └── molokai.vim │ │ │ └── pack │ │ │ │ └── vendor │ │ │ │ └── start │ │ │ │ └── nerdtree │ │ │ │ ├── .vintrc.yaml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENCE │ │ │ │ ├── README.markdown │ │ │ │ ├── _config.yml │ │ │ │ ├── autoload │ │ │ │ ├── nerdtree.vim │ │ │ │ └── nerdtree │ │ │ │ │ └── ui_glue.vim │ │ │ │ ├── doc │ │ │ │ ├── NERDTree.txt │ │ │ │ └── tags │ │ │ │ ├── lib │ │ │ │ └── nerdtree │ │ │ │ │ ├── bookmark.vim │ │ │ │ │ ├── creator.vim │ │ │ │ │ ├── event.vim │ │ │ │ │ ├── flag_set.vim │ │ │ │ │ ├── key_map.vim │ │ │ │ │ ├── menu_controller.vim │ │ │ │ │ ├── menu_item.vim │ │ │ │ │ ├── nerdtree.vim │ │ │ │ │ ├── notifier.vim │ │ │ │ │ ├── opener.vim │ │ │ │ │ ├── path.vim │ │ │ │ │ ├── tree_dir_node.vim │ │ │ │ │ ├── tree_file_node.vim │ │ │ │ │ └── ui.vim │ │ │ │ ├── nerdtree_plugin │ │ │ │ ├── exec_menuitem.vim │ │ │ │ ├── fs_menu.vim │ │ │ │ └── vcs.vim │ │ │ │ ├── plugin │ │ │ │ └── NERD_tree.vim │ │ │ │ ├── screenshot.png │ │ │ │ └── syntax │ │ │ │ └── nerdtree.vim │ │ ├── .vimrc │ │ └── .zshrc │ └── ssh │ │ └── sshd_config │ └── usr │ └── bin │ └── run_registry.sh └── docs └── readme_maintenance_prompt.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/hack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/hack/Dockerfile -------------------------------------------------------------------------------- /.github/hack/Dockerfile.code-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/hack/Dockerfile.code-server -------------------------------------------------------------------------------- /.github/hack/Dockerfile.devcontainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/hack/Dockerfile.devcontainer -------------------------------------------------------------------------------- /.github/hack/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/hack/modules -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.github/workflows/build.yaml.legacy -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/README.md -------------------------------------------------------------------------------- /docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/base/Dockerfile -------------------------------------------------------------------------------- /docker/bin/connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/bin/connect -------------------------------------------------------------------------------- /docker/bin/devcontainer-links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/bin/devcontainer-links -------------------------------------------------------------------------------- /docker/bin/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/bin/entrypoint -------------------------------------------------------------------------------- /docker/code-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/code-server/Dockerfile -------------------------------------------------------------------------------- /docker/docker-in-docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/docker-in-docker/Dockerfile -------------------------------------------------------------------------------- /docker/extra/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/extra/Dockerfile -------------------------------------------------------------------------------- /docker/hugo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/hugo/Dockerfile -------------------------------------------------------------------------------- /docker/neovim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/neovim/Dockerfile -------------------------------------------------------------------------------- /docker/slim-all/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim-all/Dockerfile -------------------------------------------------------------------------------- /docker/slim-dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim-dotnet/Dockerfile -------------------------------------------------------------------------------- /docker/slim-golang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim-golang/Dockerfile -------------------------------------------------------------------------------- /docker/slim-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim-node/Dockerfile -------------------------------------------------------------------------------- /docker/slim-python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim-python/Dockerfile -------------------------------------------------------------------------------- /docker/slim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/Dockerfile -------------------------------------------------------------------------------- /docker/slim/rootfs/containers/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/containers/containers.conf -------------------------------------------------------------------------------- /docker/slim/rootfs/containers/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/containers/registries.conf -------------------------------------------------------------------------------- /docker/slim/rootfs/docker/registry/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/docker/registry/config.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/environment -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/ansible/ansible.cfg -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/apt/apt.conf.d/99config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/apt/apt.conf.d/99config -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/containers/registries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/containers/registries.conf -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/docker/registry/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/docker/registry/config.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/dpkg/dpkg.cfg.d/01_noman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/dpkg/dpkg.cfg.d/01_noman -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/environment -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.Xresources -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.actrc -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.aws/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.bash_profile -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.bashrc -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/conf.d/omf.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/fish/conf.d/omf.fish -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/fish/config.fish -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/fish/fish_variables -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/functions/cloc.fish: -------------------------------------------------------------------------------- 1 | function cloc 2 | git count | xargs wc -l 2>/dev/null 3 | end -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/functions/env.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/fish/functions/env.fish -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/fish/functions/k.fish: -------------------------------------------------------------------------------- 1 | function k 2 | kubectl $argv 3 | end 4 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/k9s/skin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/k9s/skin.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.config/starship.toml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.dir_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.dir_colors -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.docker.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.kube/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.local/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.local/share/code-server/User/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.local/share/code-server/User/settings.json -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.pulumi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux.conf -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitattributes -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitignore -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.gitmodules -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/.travis.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/CHANGELOG.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/HOW_TO_PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/HOW_TO_PLUGIN.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/LICENSE.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/README.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/clean_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/install_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bin/update_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/clean_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/install_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/install_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/bindings/update_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/automatic_tpm_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/automatic_tpm_installation.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/changing_plugins_install_dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/changing_plugins_install_dir.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/how_to_create_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/how_to_create_plugin.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/tpm_not_working.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/docs/tpm_not_working.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/.travis.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/LICENSE.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/README.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/Vagrantfile -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/run_framework_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/run_framework_tests -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/setup -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/run_tests_in_isolation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/run_tests_in_isolation -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/test_basic_script_execution.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/test_default_session_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/test_default_session_name.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/test_tmux_scripting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/tests/test_tmux_scripting.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/check_tmux_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/check_tmux_version.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/clean_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/clean_plugins.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/plugin_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/plugin_functions.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/tmux_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/tmux_utils.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/helpers/utility.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/install_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/install_plugins.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/source_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/source_plugins.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/update_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/update_plugin.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/update_plugin_prompt_handler.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/scripts/variables.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_failed_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_failed_plugin_download -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_clean_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_clean_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_multiple_plugins_download -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_plugin_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_plugin_download -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_update_of_a_single_plugin -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/expect_successful_update_of_all_plugins -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/helpers/tpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/helpers/tpm.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_clean.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_installation.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_installation_legacy.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_sourcing.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tests/test_plugin_update.sh -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.tmux/plugins/tpm/tpm -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/colors/iceberg.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/colors/iceberg.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/colors/molokai.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/colors/molokai.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/.vintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/.vintrc.yaml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/CHANGELOG.md -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/LICENCE -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/README.markdown -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/_config.yml -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/autoload/nerdtree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/autoload/nerdtree.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/autoload/nerdtree/ui_glue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/autoload/nerdtree/ui_glue.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/doc/NERDTree.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/doc/NERDTree.txt -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/doc/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/doc/tags -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/bookmark.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/bookmark.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/creator.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/creator.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/event.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/event.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/flag_set.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/flag_set.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/key_map.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/key_map.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/menu_controller.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/menu_controller.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/menu_item.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/menu_item.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/nerdtree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/nerdtree.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/notifier.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/notifier.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/opener.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/opener.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/path.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/path.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/tree_dir_node.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/tree_dir_node.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/tree_file_node.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/tree_file_node.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/ui.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/lib/nerdtree/ui.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/exec_menuitem.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/exec_menuitem.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/fs_menu.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/fs_menu.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/vcs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/nerdtree_plugin/vcs.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/plugin/NERD_tree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/plugin/NERD_tree.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/screenshot.png -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/syntax/nerdtree.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vim/pack/vendor/start/nerdtree/syntax/nerdtree.vim -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.vimrc -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/skel/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/skel/.zshrc -------------------------------------------------------------------------------- /docker/slim/rootfs/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/etc/ssh/sshd_config -------------------------------------------------------------------------------- /docker/slim/rootfs/usr/bin/run_registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docker/slim/rootfs/usr/bin/run_registry.sh -------------------------------------------------------------------------------- /docs/readme_maintenance_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContainerCraft/devcontainer/HEAD/docs/readme_maintenance_prompt.md --------------------------------------------------------------------------------