commit 7ec67ef9182183c0d9bfceef478e834f2d847eae Author: Anthony Axenov Date: Sun Jun 21 12:18:19 2026 +0800 Initial commit diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..c97d802 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,6 @@ +/.git +/.gitea +/.gitignore +/.cache +Makefile +.DS_Store diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d3c3738 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yaml,yml}] +indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4cf203a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.cache +/site +.DS_Store diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..6773f71 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,71 @@ +# Вклад в документацию + +Этот файл содержит руководство по внесению изменений в документацию. + +## Принципы написания документации + +### Язык и стиль + +- Пишите простым и понятным языком +- Избегайте жаргона и сложных технических терминов без объяснения +- Используйте активный залог +- Обращайтесь к пользователю на "вы" +- Поддерживайте единый стиль во всех документах + +### Форматирование + +- Используйте Markdown для форматирования +- Заголовки должны быть иерархичными (H1 → H2 → H3) +- Списки используйте для перечислений +- Код и команды оформляйте в блоки кода +- Ссылки делайте относительными внутри документации + +### Примеры + +- Приводите примеры конфигурации +- Показывайте скриншоты для важных шагов +- Добавляйте таблицы для сравнения опций + +## Внесение изменений + +### Исправление ошибок + +Если вы нашли ошибку в документации: + +1. Создайте ветку от `main` +2. Внесите исправления +3. Отправьте изменения на ревью + +### Добавление нового раздела + +Для добавления нового раздела: + +1. Обсудите необходимость раздела в чате поддержки +2. Создайте план раздела +3. Напишите черновик +4. Отправьте на ревью + +### Обновление существующих разделов + +При обновлении информации: + +1. Проверьте актуальность информации +2. Внесите изменения +3. Обновите дату последнего изменения (если применимо) +4. Отправьте на ревью + +## Проверка документации + +Перед отправкой изменений: + +1. Проверьте орфографию и пунктуацию +2. Убедитесь, что все ссылки работают +3. Проверьте форматирование Markdown +4. Убедитесь, что примеры кода корректны +5. Проверьте согласованность с другими разделами + +## Обратная связь + +Если у вас есть предложения по улучшению документации: + +... diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fc33a01 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM squidfunk/mkdocs-material AS builder +COPY . /docs +RUN mkdocs build + +FROM nginx:alpine AS iptv-docs +COPY --from=builder /docs/site /usr/share/nginx/html +WORKDIR /usr/share/nginx/html +USER root +EXPOSE 80 +CMD [ "nginx", "-g", "daemon off;" ] diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bd01222 --- /dev/null +++ b/Makefile @@ -0,0 +1,47 @@ +.DEFAULT_GOAL := help +.PHONY: live site image run help + +## live: Run mkdocs with live-reloading (localhost:3000) +live: + @echo "Wait until container starts and open http://localhost:3000 to see live preview" + @docker run \ + --pull always \ + --rm \ + --interactive \ + --tty \ + --publish 3000:8000 \ + --volume ${PWD}:/docs \ + --name my-project-docs-dev \ + squidfunk/mkdocs-material:9.6.20 + +## site: Build local static site +site: + @echo "Wait until mkdocs finish" + @docker run \ + --pull always \ + --rm \ + --interactive \ + --tty \ + --volume ${PWD}:/docs \ + --name my-project-docs-dev \ + squidfunk/mkdocs-material:9.6.20 build + +## image: Build docker image +image: + @docker build \ + --tag my-project-docs-dev:latest \ + . + +## run: Run docker image (localhost:3001) +run: + @echo "Wait until container starts and open http://localhost:3001 to see ready static website" + @docker run \ + --rm \ + --publish 3001:80 \ + --name my-project-docs-dev \ + my-project-docs-dev:latest + +## help: Show this message and exit +help: Makefile + @echo "Available recipes:" + @sed -n 's/^##/ /p' $< | column -t -s ':' diff --git a/README.md b/README.md new file mode 100644 index 0000000..a6c5535 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Пример документации к проекту + +* `make live` -- запуск в режиме живой перезагрузки для отладки +* `make site` -- генерация статического сайта +* `make image` -- генерация docker-образа +* `make run` -- запуск контейнера из docker-образа +* `make help` -- справка по командам diff --git a/content/glossary.md b/content/glossary.md new file mode 100644 index 0000000..b29fdd7 --- /dev/null +++ b/content/glossary.md @@ -0,0 +1,130 @@ +--- +title: Глоссарий терминов +icon: material/format-text +--- + +# Глоссарий терминов + +Справочник терминов, используемых в документации Koda. + +## A + +**Agent (Агент)** — режим работы Koda, в котором AI самостоятельно выполняет многошаговые задачи, используя различные инструменты. + +**API Key (API-ключ)** — уникальный ключ для доступа к API провайдера моделей (OpenAI, Anthropic и др.). + +**Autocomplete (Автодополнение)** — режим автоматического предложения продолжения кода при наборе. + +## C + +**Chat (Чат)** — режим диалога с AI-моделью для решения задач, объяснения кода и получения рекомендаций. + +**Completion** — см. Autocomplete. + +**Config (Конфигурация)** — файл настроек Koda (`config.yaml`), определяющий модели, провайдеров и параметры. + +**Context (Контекст)** — информация, которую Koda использует для генерации ответов (файлы, код, документация). + +**Context Provider (Контекстный провайдер)** — компонент, автоматически добавляющий релевантную информацию в запросы через символ @ (file, code, docs, codebase, diff, terminal и др.). Подробнее в [Контекст-провайдеры](context-providers.md). + +## D + +**Diff (Дифф)** — разница между двумя версиями файла, показывающая изменения. + +## E + +**Edit (Редактирование)** — режим изменения выделенного кода по инструкции пользователя. + +**Embeddings (Эмбеддинги)** — векторные представления текста для поиска по семантическому сходству. + +## F + +**FIM (Fill-In-Middle)** — техника автодополнения, когда модель заполняет текст между префиксом и суффиксом. + +## I + +**Indexing (Индексация)** — процесс анализа и векторизации кодовой базы или документации для быстрого поиска. + +## L + +**LLM (Large Language Model)** — большая языковая модель, используемая для генерации текста и кода. + +## M + +**Model (Модель)** — AI-модель, используемая для генерации ответов (GPT-4, Claude, Llama и др.). + +**Model Role (Роль модели)** — назначение модели в Koda (chat, edit, agent, autocomplete, embed, rerank). + +## P + +**Provider (Провайдер)** — сервис, предоставляющий доступ к AI-моделям (OpenAI, Anthropic, Ollama и др.). + +**Prompt (Промпт)** — текстовый запрос к AI-модели. + +## R + +**RAG (Retrieval-Augmented Generation)** — техника генерации ответов с использованием поиска по внешней базе знаний. + +**Retrieval (Поиск)** — режим поиска по документации и другим источникам информации. + +**Roles (Роли)** — см. Model Role. + +## S + +**Session (Сессия)** — отдельный диалог в чате Koda со своей историей и контекстом. + +**Session History (История сессий)** — список всех предыдущих сессий с возможностью поиска, переключения и удаления. + +**Session Metadata (Метаданные сессии)** — информация о сессии: ID, заголовок, дата создания, режим работы, рабочая директория. + +**Session Storage (Хранилище сессий)** — место сохранения данных сессий (локальные файлы `~/.koda/sessions/` или серверное хранилище). + +**Summarization (Суммаризация)** — процесс сжатия длинной истории диалога в краткое содержание для экономии токенов. + +**SummaryMarker (Маркер суммаризации)** — визуальный индикатор в истории чата, показывающий где была применена суммаризация. + +**Auto-Summarize (Автосуммаризация)** — автоматическая суммаризация при достижении 75% использования контекста (только Agent режим). + +**Skill (Навык)** — переиспользуемый набор инструкций для AI-модели, хранящийся в отдельном файле. + +**Slash Command (Slash-команда)** — специальная команда, начинающаяся с @ (например, /share, /commit, /summarize). + +## T + +**Token (Токен)** — единица измерения длины текста для AI-моделей (примерно ¾ слова). + +**Tool (Инструмент)** — действие, которое агент может выполнить (читать файл, редактировать код, запускать команду). + +## V + +:material-microsoft-visual-studio-code: **VS Code** — Visual Studio Code, среда разработки от Microsoft. + +## W + +**Workspace (Рабочая область)** — проект или директория, открытая в IDE. + +## Ё + +**Ёфикация** — использование буквы "ё" вместо "е" в русских текстах документации. + +--- + +## Сокращения + +| Сокращение | Расшифровка | +|------------|-------------| +| AI | Artificial Intelligence (Искусственный интеллект) | +| API | Application Programming Interface | +| IDE | Integrated Development Environment | +| LLM | Large Language Model | +| [RAG] | Retrieval-Augmented Generation | +| :material-microsoft-visual-studio-code: VS Code | Visual Studio Code | +| FIM | Fill-In-Middle | + +--- + +## Дополнительные ресурсы + +- [Основная документация](README.md) +- [Режимы работы](modes.md) +- [Инструменты агента](agent-tools.md) diff --git a/content/index.md b/content/index.md new file mode 100644 index 0000000..3ee49b7 --- /dev/null +++ b/content/index.md @@ -0,0 +1,10 @@ +--- +title: Главная страница +description: Описание главной страницы +# keywords: [] +# hide: [] +--- + +# Введение + +:vscode-logo: asdfaskdfnj diff --git a/content/part1/page1.md b/content/part1/page1.md new file mode 100644 index 0000000..8aa544b --- /dev/null +++ b/content/part1/page1.md @@ -0,0 +1,10 @@ +--- +title: Страница 1 +description: Описание страницы 1 +keywords: ["foo", "bar"] +hide: ["toc"] +--- + +# Заголовок страницы 1 + +Lorem ipsum dolor sit amet diff --git a/content/part1/page2.md b/content/part1/page2.md new file mode 100644 index 0000000..5c20dd4 --- /dev/null +++ b/content/part1/page2.md @@ -0,0 +1,10 @@ +--- +title: Страница 2 +description: Описание страницы 1 +keywords: ["bar", "baz"] +# hide: ["toc"] +--- + +# Заголовок страницы 2 + +Lorem ipsum dolor sit amet diff --git a/content/tags.md b/content/tags.md new file mode 100644 index 0000000..15396cd --- /dev/null +++ b/content/tags.md @@ -0,0 +1,14 @@ +--- +title: Теги +icon: material/tag-text +--- + +# Теги документации + +Здесь перечислены все теги, которые встречаются на страницах документации. + +Нажмите на ссылку для перехода к странице, которая содержит тег. + +--- + + diff --git a/content/vscode-icons.md b/content/vscode-icons.md new file mode 100644 index 0000000..4cd0b11 --- /dev/null +++ b/content/vscode-icons.md @@ -0,0 +1,549 @@ + +| asdf | asdf | +|---|---| +| :vscode-account: | `:vscode-account:` | +| :vscode-activate-breakpoints: | `:vscode-activate-breakpoints:` | +| :vscode-add: | `:vscode-add:` | +| :vscode-add-small: | `:vscode-add-small:` | +| :vscode-agent: | `:vscode-agent:` | +| :vscode-archive: | `:vscode-archive:` | +| :vscode-arrow-both: | `:vscode-arrow-both:` | +| :vscode-arrow-circle-down: | `:vscode-arrow-circle-down:` | +| :vscode-arrow-circle-left: | `:vscode-arrow-circle-left:` | +| :vscode-arrow-circle-right: | `:vscode-arrow-circle-right:` | +| :vscode-arrow-circle-up: | `:vscode-arrow-circle-up:` | +| :vscode-arrow-down: | `:vscode-arrow-down:` | +| :vscode-arrow-left: | `:vscode-arrow-left:` | +| :vscode-arrow-right: | `:vscode-arrow-right:` | +| :vscode-arrow-small-down: | `:vscode-arrow-small-down:` | +| :vscode-arrow-small-left: | `:vscode-arrow-small-left:` | +| :vscode-arrow-small-right: | `:vscode-arrow-small-right:` | +| :vscode-arrow-small-up: | `:vscode-arrow-small-up:` | +| :vscode-arrow-swap: | `:vscode-arrow-swap:` | +| :vscode-arrow-up: | `:vscode-arrow-up:` | +| :vscode-ask: | `:vscode-ask:` | +| :vscode-attach: | `:vscode-attach:` | +| :vscode-azure: | `:vscode-azure:` | +| :vscode-azure-devops: | `:vscode-azure-devops:` | +| :vscode-beaker: | `:vscode-beaker:` | +| :vscode-beaker-stop: | `:vscode-beaker-stop:` | +| :vscode-bell: | `:vscode-bell:` | +| :vscode-bell-dot: | `:vscode-bell-dot:` | +| :vscode-bell-slash: | `:vscode-bell-slash:` | +| :vscode-bell-slash-dot: | `:vscode-bell-slash-dot:` | +| :vscode-blank: | `:vscode-blank:` | +| :vscode-bold: | `:vscode-bold:` | +| :vscode-book: | `:vscode-book:` | +| :vscode-bookmark: | `:vscode-bookmark:` | +| :vscode-bracket-dot: | `:vscode-bracket-dot:` | +| :vscode-bracket-error: | `:vscode-bracket-error:` | +| :vscode-briefcase: | `:vscode-briefcase:` | +| :vscode-broadcast: | `:vscode-broadcast:` | +| :vscode-browser: | `:vscode-browser:` | +| :vscode-bug: | `:vscode-bug:` | +| :vscode-build: | `:vscode-build:` | +| :vscode-calendar: | `:vscode-calendar:` | +| :vscode-call-incoming: | `:vscode-call-incoming:` | +| :vscode-call-outgoing: | `:vscode-call-outgoing:` | +| :vscode-case-sensitive: | `:vscode-case-sensitive:` | +| :vscode-chat-export: | `:vscode-chat-export:` | +| :vscode-chat-import: | `:vscode-chat-import:` | +| :vscode-chat-sparkle: | `:vscode-chat-sparkle:` | +| :vscode-chat-sparkle-error: | `:vscode-chat-sparkle-error:` | +| :vscode-chat-sparkle-warning: | `:vscode-chat-sparkle-warning:` | +| :vscode-check: | `:vscode-check:` | +| :vscode-check-all: | `:vscode-check-all:` | +| :vscode-checklist: | `:vscode-checklist:` | +| :vscode-chevron-down: | `:vscode-chevron-down:` | +| :vscode-chevron-left: | `:vscode-chevron-left:` | +| :vscode-chevron-right: | `:vscode-chevron-right:` | +| :vscode-chevron-up: | `:vscode-chevron-up:` | +| :vscode-chip: | `:vscode-chip:` | +| :vscode-chrome-close: | `:vscode-chrome-close:` | +| :vscode-chrome-maximize: | `:vscode-chrome-maximize:` | +| :vscode-chrome-minimize: | `:vscode-chrome-minimize:` | +| :vscode-chrome-restore: | `:vscode-chrome-restore:` | +| :vscode-circle: | `:vscode-circle:` | +| :vscode-circle-filled: | `:vscode-circle-filled:` | +| :vscode-circle-large: | `:vscode-circle-large:` | +| :vscode-circle-large-filled: | `:vscode-circle-large-filled:` | +| :vscode-circle-slash: | `:vscode-circle-slash:` | +| :vscode-circle-small: | `:vscode-circle-small:` | +| :vscode-circle-small-filled: | `:vscode-circle-small-filled:` | +| :vscode-circuit-board: | `:vscode-circuit-board:` | +| :vscode-claude: | `:vscode-claude:` | +| :vscode-clear-all: | `:vscode-clear-all:` | +| :vscode-clippy: | `:vscode-clippy:` | +| :vscode-clockface: | `:vscode-clockface:` | +| :vscode-close: | `:vscode-close:` | +| :vscode-close-all: | `:vscode-close-all:` | +| :vscode-cloud: | `:vscode-cloud:` | +| :vscode-cloud-download: | `:vscode-cloud-download:` | +| :vscode-cloud-small: | `:vscode-cloud-small:` | +| :vscode-cloud-upload: | `:vscode-cloud-upload:` | +| :vscode-code: | `:vscode-code:` | +| :vscode-code-oss: | `:vscode-code-oss:` | +| :vscode-code-review: | `:vscode-code-review:` | +| :vscode-coffee: | `:vscode-coffee:` | +| :vscode-collapse-all: | `:vscode-collapse-all:` | +| :vscode-collection: | `:vscode-collection:` | +| :vscode-collection-small: | `:vscode-collection-small:` | +| :vscode-color-mode: | `:vscode-color-mode:` | +| :vscode-combine: | `:vscode-combine:` | +| :vscode-comment: | `:vscode-comment:` | +| :vscode-comment-discussion: | `:vscode-comment-discussion:` | +| :vscode-comment-discussion-quote: | `:vscode-comment-discussion-quote:` | +| :vscode-comment-discussion-sparkle: | `:vscode-comment-discussion-sparkle:` | +| :vscode-comment-draft: | `:vscode-comment-draft:` | +| :vscode-comment-unresolved: | `:vscode-comment-unresolved:` | +| :vscode-compass: | `:vscode-compass:` | +| :vscode-compass-active: | `:vscode-compass-active:` | +| :vscode-compass-dot: | `:vscode-compass-dot:` | +| :vscode-copilot: | `:vscode-copilot:` | +| :vscode-copilot-blocked: | `:vscode-copilot-blocked:` | +| :vscode-copilot-error: | `:vscode-copilot-error:` | +| :vscode-copilot-in-progress: | `:vscode-copilot-in-progress:` | +| :vscode-copilot-large: | `:vscode-copilot-large:` | +| :vscode-copilot-not-connected: | `:vscode-copilot-not-connected:` | +| :vscode-copilot-snooze: | `:vscode-copilot-snooze:` | +| :vscode-copilot-success: | `:vscode-copilot-success:` | +| :vscode-copilot-unavailable: | `:vscode-copilot-unavailable:` | +| :vscode-copilot-warning: | `:vscode-copilot-warning:` | +| :vscode-copilot-warning-large: | `:vscode-copilot-warning-large:` | +| :vscode-copy: | `:vscode-copy:` | +| :vscode-coverage: | `:vscode-coverage:` | +| :vscode-credit-card: | `:vscode-credit-card:` | +| :vscode-cursor: | `:vscode-cursor:` | +| :vscode-dash: | `:vscode-dash:` | +| :vscode-dashboard: | `:vscode-dashboard:` | +| :vscode-database: | `:vscode-database:` | +| :vscode-debug: | `:vscode-debug:` | +| :vscode-debug-all: | `:vscode-debug-all:` | +| :vscode-debug-alt: | `:vscode-debug-alt:` | +| :vscode-debug-alt-small: | `:vscode-debug-alt-small:` | +| :vscode-debug-breakpoint-conditional: | `:vscode-debug-breakpoint-conditional:` | +| :vscode-debug-breakpoint-conditional-unverified: | `:vscode-debug-breakpoint-conditional-unverified:` | +| :vscode-debug-breakpoint-data: | `:vscode-debug-breakpoint-data:` | +| :vscode-debug-breakpoint-data-unverified: | `:vscode-debug-breakpoint-data-unverified:` | +| :vscode-debug-breakpoint-function: | `:vscode-debug-breakpoint-function:` | +| :vscode-debug-breakpoint-function-unverified: | `:vscode-debug-breakpoint-function-unverified:` | +| :vscode-debug-breakpoint-log: | `:vscode-debug-breakpoint-log:` | +| :vscode-debug-breakpoint-log-unverified: | `:vscode-debug-breakpoint-log-unverified:` | +| :vscode-debug-breakpoint-unsupported: | `:vscode-debug-breakpoint-unsupported:` | +| :vscode-debug-connected: | `:vscode-debug-connected:` | +| :vscode-debug-console: | `:vscode-debug-console:` | +| :vscode-debug-continue: | `:vscode-debug-continue:` | +| :vscode-debug-continue-small: | `:vscode-debug-continue-small:` | +| :vscode-debug-coverage: | `:vscode-debug-coverage:` | +| :vscode-debug-disconnect: | `:vscode-debug-disconnect:` | +| :vscode-debug-line-by-line: | `:vscode-debug-line-by-line:` | +| :vscode-debug-pause: | `:vscode-debug-pause:` | +| :vscode-debug-rerun: | `:vscode-debug-rerun:` | +| :vscode-debug-restart: | `:vscode-debug-restart:` | +| :vscode-debug-restart-frame: | `:vscode-debug-restart-frame:` | +| :vscode-debug-reverse-continue: | `:vscode-debug-reverse-continue:` | +| :vscode-debug-stackframe: | `:vscode-debug-stackframe:` | +| :vscode-debug-stackframe-active: | `:vscode-debug-stackframe-active:` | +| :vscode-debug-start: | `:vscode-debug-start:` | +| :vscode-debug-step-back: | `:vscode-debug-step-back:` | +| :vscode-debug-step-into: | `:vscode-debug-step-into:` | +| :vscode-debug-step-out: | `:vscode-debug-step-out:` | +| :vscode-debug-step-over: | `:vscode-debug-step-over:` | +| :vscode-debug-stop: | `:vscode-debug-stop:` | +| :vscode-desktop-download: | `:vscode-desktop-download:` | +| :vscode-device-camera: | `:vscode-device-camera:` | +| :vscode-device-camera-video: | `:vscode-device-camera-video:` | +| :vscode-device-mobile: | `:vscode-device-mobile:` | +| :vscode-diff: | `:vscode-diff:` | +| :vscode-diff-added: | `:vscode-diff-added:` | +| :vscode-diff-ignored: | `:vscode-diff-ignored:` | +| :vscode-diff-modified: | `:vscode-diff-modified:` | +| :vscode-diff-multiple: | `:vscode-diff-multiple:` | +| :vscode-diff-removed: | `:vscode-diff-removed:` | +| :vscode-diff-renamed: | `:vscode-diff-renamed:` | +| :vscode-diff-single: | `:vscode-diff-single:` | +| :vscode-discard: | `:vscode-discard:` | +| :vscode-download: | `:vscode-download:` | +| :vscode-edit: | `:vscode-edit:` | +| :vscode-edit-code: | `:vscode-edit-code:` | +| :vscode-edit-session: | `:vscode-edit-session:` | +| :vscode-edit-sparkle: | `:vscode-edit-sparkle:` | +| :vscode-editor-layout: | `:vscode-editor-layout:` | +| :vscode-ellipsis: | `:vscode-ellipsis:` | +| :vscode-empty-window: | `:vscode-empty-window:` | +| :vscode-eraser: | `:vscode-eraser:` | +| :vscode-error: | `:vscode-error:` | +| :vscode-error-small: | `:vscode-error-small:` | +| :vscode-exclude: | `:vscode-exclude:` | +| :vscode-expand-all: | `:vscode-expand-all:` | +| :vscode-export: | `:vscode-export:` | +| :vscode-extensions: | `:vscode-extensions:` | +| :vscode-extensions-large: | `:vscode-extensions-large:` | +| :vscode-eye: | `:vscode-eye:` | +| :vscode-eye-closed: | `:vscode-eye-closed:` | +| :vscode-feedback: | `:vscode-feedback:` | +| :vscode-file: | `:vscode-file:` | +| :vscode-file-binary: | `:vscode-file-binary:` | +| :vscode-file-code: | `:vscode-file-code:` | +| :vscode-file-media: | `:vscode-file-media:` | +| :vscode-file-pdf: | `:vscode-file-pdf:` | +| :vscode-file-submodule: | `:vscode-file-submodule:` | +| :vscode-file-symlink-directory: | `:vscode-file-symlink-directory:` | +| :vscode-file-symlink-file: | `:vscode-file-symlink-file:` | +| :vscode-file-text: | `:vscode-file-text:` | +| :vscode-file-zip: | `:vscode-file-zip:` | +| :vscode-files: | `:vscode-files:` | +| :vscode-filter: | `:vscode-filter:` | +| :vscode-filter-filled: | `:vscode-filter-filled:` | +| :vscode-flag: | `:vscode-flag:` | +| :vscode-flame: | `:vscode-flame:` | +| :vscode-fold: | `:vscode-fold:` | +| :vscode-fold-down: | `:vscode-fold-down:` | +| :vscode-fold-up: | `:vscode-fold-up:` | +| :vscode-folder: | `:vscode-folder:` | +| :vscode-folder-active: | `:vscode-folder-active:` | +| :vscode-folder-library: | `:vscode-folder-library:` | +| :vscode-folder-opened: | `:vscode-folder-opened:` | +| :vscode-forward: | `:vscode-forward:` | +| :vscode-game: | `:vscode-game:` | +| :vscode-gear: | `:vscode-gear:` | +| :vscode-gift: | `:vscode-gift:` | +| :vscode-gist: | `:vscode-gist:` | +| :vscode-gist-secret: | `:vscode-gist-secret:` | +| :vscode-git-branch: | `:vscode-git-branch:` | +| :vscode-git-branch-changes: | `:vscode-git-branch-changes:` | +| :vscode-git-branch-conflicts: | `:vscode-git-branch-conflicts:` | +| :vscode-git-branch-staged-changes: | `:vscode-git-branch-staged-changes:` | +| :vscode-git-commit: | `:vscode-git-commit:` | +| :vscode-git-compare: | `:vscode-git-compare:` | +| :vscode-git-fetch: | `:vscode-git-fetch:` | +| :vscode-git-merge: | `:vscode-git-merge:` | +| :vscode-git-pull-request: | `:vscode-git-pull-request:` | +| :vscode-git-pull-request-closed: | `:vscode-git-pull-request-closed:` | +| :vscode-git-pull-request-create: | `:vscode-git-pull-request-create:` | +| :vscode-git-pull-request-done: | `:vscode-git-pull-request-done:` | +| :vscode-git-pull-request-draft: | `:vscode-git-pull-request-draft:` | +| :vscode-git-pull-request-go-to-changes: | `:vscode-git-pull-request-go-to-changes:` | +| :vscode-git-pull-request-new-changes: | `:vscode-git-pull-request-new-changes:` | +| :vscode-git-stash: | `:vscode-git-stash:` | +| :vscode-git-stash-apply: | `:vscode-git-stash-apply:` | +| :vscode-git-stash-pop: | `:vscode-git-stash-pop:` | +| :vscode-github: | `:vscode-github:` | +| :vscode-github-action: | `:vscode-github-action:` | +| :vscode-github-alt: | `:vscode-github-alt:` | +| :vscode-github-inverted: | `:vscode-github-inverted:` | +| :vscode-github-project: | `:vscode-github-project:` | +| :vscode-globe: | `:vscode-globe:` | +| :vscode-go-to-editing-session: | `:vscode-go-to-editing-session:` | +| :vscode-go-to-file: | `:vscode-go-to-file:` | +| :vscode-go-to-search: | `:vscode-go-to-search:` | +| :vscode-grabber: | `:vscode-grabber:` | +| :vscode-graph: | `:vscode-graph:` | +| :vscode-graph-left: | `:vscode-graph-left:` | +| :vscode-graph-line: | `:vscode-graph-line:` | +| :vscode-graph-scatter: | `:vscode-graph-scatter:` | +| :vscode-gripper: | `:vscode-gripper:` | +| :vscode-group-by-ref-type: | `:vscode-group-by-ref-type:` | +| :vscode-heart: | `:vscode-heart:` | +| :vscode-heart-filled: | `:vscode-heart-filled:` | +| :vscode-history: | `:vscode-history:` | +| :vscode-home: | `:vscode-home:` | +| :vscode-horizontal-rule: | `:vscode-horizontal-rule:` | +| :vscode-hubot: | `:vscode-hubot:` | +| :vscode-inbox: | `:vscode-inbox:` | +| :vscode-indent: | `:vscode-indent:` | +| :vscode-index-zero: | `:vscode-index-zero:` | +| :vscode-info: | `:vscode-info:` | +| :vscode-insert: | `:vscode-insert:` | +| :vscode-inspect: | `:vscode-inspect:` | +| :vscode-issue-draft: | `:vscode-issue-draft:` | +| :vscode-issue-reopened: | `:vscode-issue-reopened:` | +| :vscode-issues: | `:vscode-issues:` | +| :vscode-italic: | `:vscode-italic:` | +| :vscode-jersey: | `:vscode-jersey:` | +| :vscode-json: | `:vscode-json:` | +| :vscode-kebab-vertical: | `:vscode-kebab-vertical:` | +| :vscode-key: | `:vscode-key:` | +| :vscode-keyboard-tab: | `:vscode-keyboard-tab:` | +| :vscode-keyboard-tab-above: | `:vscode-keyboard-tab-above:` | +| :vscode-keyboard-tab-below: | `:vscode-keyboard-tab-below:` | +| :vscode-law: | `:vscode-law:` | +| :vscode-layers: | `:vscode-layers:` | +| :vscode-layers-active: | `:vscode-layers-active:` | +| :vscode-layers-dot: | `:vscode-layers-dot:` | +| :vscode-layout: | `:vscode-layout:` | +| :vscode-layout-activitybar-left: | `:vscode-layout-activitybar-left:` | +| :vscode-layout-activitybar-right: | `:vscode-layout-activitybar-right:` | +| :vscode-layout-centered: | `:vscode-layout-centered:` | +| :vscode-layout-menubar: | `:vscode-layout-menubar:` | +| :vscode-layout-panel: | `:vscode-layout-panel:` | +| :vscode-layout-panel-center: | `:vscode-layout-panel-center:` | +| :vscode-layout-panel-dock: | `:vscode-layout-panel-dock:` | +| :vscode-layout-panel-justify: | `:vscode-layout-panel-justify:` | +| :vscode-layout-panel-left: | `:vscode-layout-panel-left:` | +| :vscode-layout-panel-off: | `:vscode-layout-panel-off:` | +| :vscode-layout-panel-right: | `:vscode-layout-panel-right:` | +| :vscode-layout-sidebar-left: | `:vscode-layout-sidebar-left:` | +| :vscode-layout-sidebar-left-dock: | `:vscode-layout-sidebar-left-dock:` | +| :vscode-layout-sidebar-left-off: | `:vscode-layout-sidebar-left-off:` | +| :vscode-layout-sidebar-right: | `:vscode-layout-sidebar-right:` | +| :vscode-layout-sidebar-right-dock: | `:vscode-layout-sidebar-right-dock:` | +| :vscode-layout-sidebar-right-off: | `:vscode-layout-sidebar-right-off:` | +| :vscode-layout-statusbar: | `:vscode-layout-statusbar:` | +| :vscode-library: | `:vscode-library:` | +| :vscode-lightbulb: | `:vscode-lightbulb:` | +| :vscode-lightbulb-autofix: | `:vscode-lightbulb-autofix:` | +| :vscode-lightbulb-empty: | `:vscode-lightbulb-empty:` | +| :vscode-lightbulb-sparkle: | `:vscode-lightbulb-sparkle:` | +| :vscode-link: | `:vscode-link:` | +| :vscode-link-external: | `:vscode-link-external:` | +| :vscode-list-filter: | `:vscode-list-filter:` | +| :vscode-list-flat: | `:vscode-list-flat:` | +| :vscode-list-ordered: | `:vscode-list-ordered:` | +| :vscode-list-selection: | `:vscode-list-selection:` | +| :vscode-list-tree: | `:vscode-list-tree:` | +| :vscode-list-unordered: | `:vscode-list-unordered:` | +| :vscode-live-share: | `:vscode-live-share:` | +| :vscode-loading: | `:vscode-loading:` | +| :vscode-location: | `:vscode-location:` | +| :vscode-lock: | `:vscode-lock:` | +| :vscode-lock-small: | `:vscode-lock-small:` | +| :vscode-magnet: | `:vscode-magnet:` | +| :vscode-mail: | `:vscode-mail:` | +| :vscode-mail-read: | `:vscode-mail-read:` | +| :vscode-map: | `:vscode-map:` | +| :vscode-map-filled: | `:vscode-map-filled:` | +| :vscode-map-vertical: | `:vscode-map-vertical:` | +| :vscode-map-vertical-filled: | `:vscode-map-vertical-filled:` | +| :vscode-markdown: | `:vscode-markdown:` | +| :vscode-mcp: | `:vscode-mcp:` | +| :vscode-megaphone: | `:vscode-megaphone:` | +| :vscode-mention: | `:vscode-mention:` | +| :vscode-menu: | `:vscode-menu:` | +| :vscode-merge: | `:vscode-merge:` | +| :vscode-merge-into: | `:vscode-merge-into:` | +| :vscode-mic: | `:vscode-mic:` | +| :vscode-mic-filled: | `:vscode-mic-filled:` | +| :vscode-milestone: | `:vscode-milestone:` | +| :vscode-mirror: | `:vscode-mirror:` | +| :vscode-mortar-board: | `:vscode-mortar-board:` | +| :vscode-move: | `:vscode-move:` | +| :vscode-multiple-windows: | `:vscode-multiple-windows:` | +| :vscode-music: | `:vscode-music:` | +| :vscode-mute: | `:vscode-mute:` | +| :vscode-new-collection: | `:vscode-new-collection:` | +| :vscode-new-file: | `:vscode-new-file:` | +| :vscode-new-folder: | `:vscode-new-folder:` | +| :vscode-new-session: | `:vscode-new-session:` | +| :vscode-newline: | `:vscode-newline:` | +| :vscode-no-newline: | `:vscode-no-newline:` | +| :vscode-note: | `:vscode-note:` | +| :vscode-notebook: | `:vscode-notebook:` | +| :vscode-notebook-template: | `:vscode-notebook-template:` | +| :vscode-octoface: | `:vscode-octoface:` | +| :vscode-open-in-product: | `:vscode-open-in-product:` | +| :vscode-open-in-window: | `:vscode-open-in-window:` | +| :vscode-open-preview: | `:vscode-open-preview:` | +| :vscode-openai: | `:vscode-openai:` | +| :vscode-organization: | `:vscode-organization:` | +| :vscode-output: | `:vscode-output:` | +| :vscode-package: | `:vscode-package:` | +| :vscode-paintcan: | `:vscode-paintcan:` | +| :vscode-pass: | `:vscode-pass:` | +| :vscode-pass-filled: | `:vscode-pass-filled:` | +| :vscode-percentage: | `:vscode-percentage:` | +| :vscode-person: | `:vscode-person:` | +| :vscode-person-add: | `:vscode-person-add:` | +| :vscode-piano: | `:vscode-piano:` | +| :vscode-pie-chart: | `:vscode-pie-chart:` | +| :vscode-pin: | `:vscode-pin:` | +| :vscode-pinned: | `:vscode-pinned:` | +| :vscode-pinned-dirty: | `:vscode-pinned-dirty:` | +| :vscode-play: | `:vscode-play:` | +| :vscode-play-circle: | `:vscode-play-circle:` | +| :vscode-plug: | `:vscode-plug:` | +| :vscode-preserve-case: | `:vscode-preserve-case:` | +| :vscode-preview: | `:vscode-preview:` | +| :vscode-primitive-square: | `:vscode-primitive-square:` | +| :vscode-project: | `:vscode-project:` | +| :vscode-pulse: | `:vscode-pulse:` | +| :vscode-python: | `:vscode-python:` | +| :vscode-question: | `:vscode-question:` | +| :vscode-quote: | `:vscode-quote:` | +| :vscode-quotes: | `:vscode-quotes:` | +| :vscode-radio-tower: | `:vscode-radio-tower:` | +| :vscode-reactions: | `:vscode-reactions:` | +| :vscode-record: | `:vscode-record:` | +| :vscode-record-keys: | `:vscode-record-keys:` | +| :vscode-record-small: | `:vscode-record-small:` | +| :vscode-redo: | `:vscode-redo:` | +| :vscode-references: | `:vscode-references:` | +| :vscode-refresh: | `:vscode-refresh:` | +| :vscode-regex: | `:vscode-regex:` | +| :vscode-remote: | `:vscode-remote:` | +| :vscode-remote-explorer: | `:vscode-remote-explorer:` | +| :vscode-remove: | `:vscode-remove:` | +| :vscode-remove-small: | `:vscode-remove-small:` | +| :vscode-rename: | `:vscode-rename:` | +| :vscode-replace: | `:vscode-replace:` | +| :vscode-replace-all: | `:vscode-replace-all:` | +| :vscode-reply: | `:vscode-reply:` | +| :vscode-repo: | `:vscode-repo:` | +| :vscode-repo-clone: | `:vscode-repo-clone:` | +| :vscode-repo-fetch: | `:vscode-repo-fetch:` | +| :vscode-repo-force-push: | `:vscode-repo-force-push:` | +| :vscode-repo-forked: | `:vscode-repo-forked:` | +| :vscode-repo-pinned: | `:vscode-repo-pinned:` | +| :vscode-repo-pull: | `:vscode-repo-pull:` | +| :vscode-repo-push: | `:vscode-repo-push:` | +| :vscode-repo-selected: | `:vscode-repo-selected:` | +| :vscode-report: | `:vscode-report:` | +| :vscode-request-changes: | `:vscode-request-changes:` | +| :vscode-robot: | `:vscode-robot:` | +| :vscode-rocket: | `:vscode-rocket:` | +| :vscode-root-folder: | `:vscode-root-folder:` | +| :vscode-root-folder-opened: | `:vscode-root-folder-opened:` | +| :vscode-rss: | `:vscode-rss:` | +| :vscode-ruby: | `:vscode-ruby:` | +| :vscode-run-above: | `:vscode-run-above:` | +| :vscode-run-all: | `:vscode-run-all:` | +| :vscode-run-all-coverage: | `:vscode-run-all-coverage:` | +| :vscode-run-below: | `:vscode-run-below:` | +| :vscode-run-coverage: | `:vscode-run-coverage:` | +| :vscode-run-errors: | `:vscode-run-errors:` | +| :vscode-run-with-deps: | `:vscode-run-with-deps:` | +| :vscode-save: | `:vscode-save:` | +| :vscode-save-all: | `:vscode-save-all:` | +| :vscode-save-as: | `:vscode-save-as:` | +| :vscode-screen-cut: | `:vscode-screen-cut:` | +| :vscode-screen-full: | `:vscode-screen-full:` | +| :vscode-screen-normal: | `:vscode-screen-normal:` | +| :vscode-search: | `:vscode-search:` | +| :vscode-search-fuzzy: | `:vscode-search-fuzzy:` | +| :vscode-search-large: | `:vscode-search-large:` | +| :vscode-search-sparkle: | `:vscode-search-sparkle:` | +| :vscode-search-stop: | `:vscode-search-stop:` | +| :vscode-send: | `:vscode-send:` | +| :vscode-send-to-remote-agent: | `:vscode-send-to-remote-agent:` | +| :vscode-server: | `:vscode-server:` | +| :vscode-server-environment: | `:vscode-server-environment:` | +| :vscode-server-process: | `:vscode-server-process:` | +| :vscode-session-in-progress: | `:vscode-session-in-progress:` | +| :vscode-settings: | `:vscode-settings:` | +| :vscode-settings-gear: | `:vscode-settings-gear:` | +| :vscode-share: | `:vscode-share:` | +| :vscode-share-window: | `:vscode-share-window:` | +| :vscode-shield: | `:vscode-shield:` | +| :vscode-sign-in: | `:vscode-sign-in:` | +| :vscode-sign-out: | `:vscode-sign-out:` | +| :vscode-skip: | `:vscode-skip:` | +| :vscode-smiley: | `:vscode-smiley:` | +| :vscode-snake: | `:vscode-snake:` | +| :vscode-sort-precedence: | `:vscode-sort-precedence:` | +| :vscode-source-control: | `:vscode-source-control:` | +| :vscode-sparkle: | `:vscode-sparkle:` | +| :vscode-sparkle-filled: | `:vscode-sparkle-filled:` | +| :vscode-split-horizontal: | `:vscode-split-horizontal:` | +| :vscode-split-vertical: | `:vscode-split-vertical:` | +| :vscode-squirrel: | `:vscode-squirrel:` | +| :vscode-star-empty: | `:vscode-star-empty:` | +| :vscode-star-full: | `:vscode-star-full:` | +| :vscode-star-half: | `:vscode-star-half:` | +| :vscode-stop-circle: | `:vscode-stop-circle:` | +| :vscode-strikethrough: | `:vscode-strikethrough:` | +| :vscode-surround-with: | `:vscode-surround-with:` | +| :vscode-symbol-array: | `:vscode-symbol-array:` | +| :vscode-symbol-boolean: | `:vscode-symbol-boolean:` | +| :vscode-symbol-class: | `:vscode-symbol-class:` | +| :vscode-symbol-color: | `:vscode-symbol-color:` | +| :vscode-symbol-constant: | `:vscode-symbol-constant:` | +| :vscode-symbol-enum: | `:vscode-symbol-enum:` | +| :vscode-symbol-enum-member: | `:vscode-symbol-enum-member:` | +| :vscode-symbol-event: | `:vscode-symbol-event:` | +| :vscode-symbol-field: | `:vscode-symbol-field:` | +| :vscode-symbol-file: | `:vscode-symbol-file:` | +| :vscode-symbol-interface: | `:vscode-symbol-interface:` | +| :vscode-symbol-key: | `:vscode-symbol-key:` | +| :vscode-symbol-keyword: | `:vscode-symbol-keyword:` | +| :vscode-symbol-method: | `:vscode-symbol-method:` | +| :vscode-symbol-method-arrow: | `:vscode-symbol-method-arrow:` | +| :vscode-symbol-misc: | `:vscode-symbol-misc:` | +| :vscode-symbol-namespace: | `:vscode-symbol-namespace:` | +| :vscode-symbol-numeric: | `:vscode-symbol-numeric:` | +| :vscode-symbol-operator: | `:vscode-symbol-operator:` | +| :vscode-symbol-parameter: | `:vscode-symbol-parameter:` | +| :vscode-symbol-property: | `:vscode-symbol-property:` | +| :vscode-symbol-ruler: | `:vscode-symbol-ruler:` | +| :vscode-symbol-snippet: | `:vscode-symbol-snippet:` | +| :vscode-symbol-string: | `:vscode-symbol-string:` | +| :vscode-symbol-structure: | `:vscode-symbol-structure:` | +| :vscode-symbol-variable: | `:vscode-symbol-variable:` | +| :vscode-sync: | `:vscode-sync:` | +| :vscode-sync-ignored: | `:vscode-sync-ignored:` | +| :vscode-table: | `:vscode-table:` | +| :vscode-tag: | `:vscode-tag:` | +| :vscode-target: | `:vscode-target:` | +| :vscode-tasklist: | `:vscode-tasklist:` | +| :vscode-telescope: | `:vscode-telescope:` | +| :vscode-terminal: | `:vscode-terminal:` | +| :vscode-terminal-bash: | `:vscode-terminal-bash:` | +| :vscode-terminal-cmd: | `:vscode-terminal-cmd:` | +| :vscode-terminal-debian: | `:vscode-terminal-debian:` | +| :vscode-terminal-git-bash: | `:vscode-terminal-git-bash:` | +| :vscode-terminal-linux: | `:vscode-terminal-linux:` | +| :vscode-terminal-powershell: | `:vscode-terminal-powershell:` | +| :vscode-terminal-secure: | `:vscode-terminal-secure:` | +| :vscode-terminal-tmux: | `:vscode-terminal-tmux:` | +| :vscode-terminal-ubuntu: | `:vscode-terminal-ubuntu:` | +| :vscode-text-size: | `:vscode-text-size:` | +| :vscode-thinking: | `:vscode-thinking:` | +| :vscode-three-bars: | `:vscode-three-bars:` | +| :vscode-thumbsdown: | `:vscode-thumbsdown:` | +| :vscode-thumbsdown-filled: | `:vscode-thumbsdown-filled:` | +| :vscode-thumbsup: | `:vscode-thumbsup:` | +| :vscode-thumbsup-filled: | `:vscode-thumbsup-filled:` | +| :vscode-tools: | `:vscode-tools:` | +| :vscode-trash: | `:vscode-trash:` | +| :vscode-triangle-down: | `:vscode-triangle-down:` | +| :vscode-triangle-left: | `:vscode-triangle-left:` | +| :vscode-triangle-right: | `:vscode-triangle-right:` | +| :vscode-triangle-up: | `:vscode-triangle-up:` | +| :vscode-twitter: | `:vscode-twitter:` | +| :vscode-type-hierarchy: | `:vscode-type-hierarchy:` | +| :vscode-type-hierarchy-sub: | `:vscode-type-hierarchy-sub:` | +| :vscode-type-hierarchy-super: | `:vscode-type-hierarchy-super:` | +| :vscode-unarchive: | `:vscode-unarchive:` | +| :vscode-unfold: | `:vscode-unfold:` | +| :vscode-ungroup-by-ref-type: | `:vscode-ungroup-by-ref-type:` | +| :vscode-unlock: | `:vscode-unlock:` | +| :vscode-unmute: | `:vscode-unmute:` | +| :vscode-unverified: | `:vscode-unverified:` | +| :vscode-variable-group: | `:vscode-variable-group:` | +| :vscode-verified: | `:vscode-verified:` | +| :vscode-verified-filled: | `:vscode-verified-filled:` | +| :vscode-versions: | `:vscode-versions:` | +| :vscode-vm: | `:vscode-vm:` | +| :vscode-vm-active: | `:vscode-vm-active:` | +| :vscode-vm-connect: | `:vscode-vm-connect:` | +| :vscode-vm-outline: | `:vscode-vm-outline:` | +| :vscode-vm-pending: | `:vscode-vm-pending:` | +| :vscode-vm-running: | `:vscode-vm-running:` | +| :vscode-vm-small: | `:vscode-vm-small:` | +| :vscode-vr: | `:vscode-vr:` | +| :vscode-vscode: | `:vscode-vscode:` | +| :vscode-vscode-insiders: | `:vscode-vscode-insiders:` | +| :vscode-wand: | `:vscode-wand:` | +| :vscode-warning: | `:vscode-warning:` | +| :vscode-watch: | `:vscode-watch:` | +| :vscode-whitespace: | `:vscode-whitespace:` | +| :vscode-whole-word: | `:vscode-whole-word:` | +| :vscode-window: | `:vscode-window:` | +| :vscode-window-active: | `:vscode-window-active:` | +| :vscode-word-wrap: | `:vscode-word-wrap:` | +| :vscode-workspace-trusted: | `:vscode-workspace-trusted:` | +| :vscode-workspace-unknown: | `:vscode-workspace-unknown:` | +| :vscode-workspace-untrusted: | `:vscode-workspace-untrusted:` | +| :vscode-worktree: | `:vscode-worktree:` | +| :vscode-worktree-small: | `:vscode-worktree-small:` | +| :vscode-zoom-in: | `:vscode-zoom-in:` | +| :vscode-zoom-out: | `:vscode-zoom-out:` | diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 0000000..4f0a8e6 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,142 @@ +site_name: Документация +site_description: Описание проекта и его компонентов +site_author: Иван Иванов +copyright: Иван Иванов © 2026, MIT License + +repo_name: Репозиторий +repo_url: https://git.axenov.dev/anthony/mkdocs-boilerplate +edit_uri: src/branch/master/content/ +remote_branch: master + +docs_dir: ./content +use_directory_urls: false +watch: + - content + - snippets +extra_css: + - css/custom.css +# extra_javascript: +# - https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js + +extra: + homepage: /docs + logo: assets/img/favicon/logo.png + favicon: assets/img/favicon/logo.png + social: + - name: Telegram + icon: simple/telegram + link: https://t.me/ + - name: YouTube + icon: simple/youtube + link: https://www.youtube.com/ + alternate: + - name: Русский + link: / + lang: ru + - name: English + link: /en/ + lang: en + +theme: + name: 'material' + language: ru + custom_dir: overrides + features: + - content.action.edit + - content.tabs.link + - navigation.footer + - navigation.indexes + - navigation.path + - navigation.sections + # - navigation.expand + - navigation.tabs + - navigation.top + - navigation.tracking + - search.suggest + - toc.follow + icon: + repo: simple/github + edit: material/pencil + view: material/eye + annotation: material/chevron-right-circle + palette: + # Автотема + - media: "(prefers-color-scheme)" + toggle: + icon: material/brightness-auto + name: Включить тёмную тему + # Тёмная тема + - scheme: slate + media: "(prefers-color-scheme: light)" + accent: teal + primary: black + toggle: + name: Включить светлую тему + icon: material/weather-sunny + # Светлая тема + - scheme: default + media: "(prefers-color-scheme: dark)" + accent: teal + primary: teal + toggle: + name: Предпочесть системную тему + icon: material/weather-night + +plugins: + - minify: + minify_html: true + - tags: + listings: true + tags_hierarchy: true + tags_hierarchy_separator: / + tags_name_property: keywords + # shadow: true + export: true + listings_toc: true + - social: + cards_layout_options: + background_color: teal + background_image: null + - search: + separator: '[\s\-\.]+' + # indexing: 'full' + +validation: + omitted_files: warn + absolute_links: warn + unrecognized_links: warn + anchors: warn + +markdown_extensions: + - admonition + - attr_list + - md_in_html + - footnotes + - pymdownx.details + - pymdownx.superfences + - pymdownx.tasklist: + clickable_checkbox: false + - pymdownx.snippets: + base_path: snippets + # auto_append: + # - abbr.md + - toc: + permalink: true + - pymdownx.tabbed: + alternate_style: true + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg + options: + custom_icons: + - overrides/.icons + +nav: + - index.md + - "Раздел 1": + - part1/page1.md + - part1/page2.md + - "Доп. сведения": + - vscode-icons.md # debug + - glossary.md + - tags.md diff --git a/overrides/.icons/vscode/LICENSE b/overrides/.icons/vscode/LICENSE new file mode 100644 index 0000000..b5ab7ef --- /dev/null +++ b/overrides/.icons/vscode/LICENSE @@ -0,0 +1,399 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More_considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the "Licensor." The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + +--- + +Git Logo by [Jason Long](https://bsky.app/profile/jasonlong.me) is licensed under the [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). diff --git a/overrides/.icons/vscode/account.svg b/overrides/.icons/vscode/account.svg new file mode 100644 index 0000000..ca37ef5 --- /dev/null +++ b/overrides/.icons/vscode/account.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/activate-breakpoints.svg b/overrides/.icons/vscode/activate-breakpoints.svg new file mode 100644 index 0000000..54486a0 --- /dev/null +++ b/overrides/.icons/vscode/activate-breakpoints.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/add-small.svg b/overrides/.icons/vscode/add-small.svg new file mode 100644 index 0000000..f22da9b --- /dev/null +++ b/overrides/.icons/vscode/add-small.svg @@ -0,0 +1 @@ + diff --git a/overrides/.icons/vscode/add.svg b/overrides/.icons/vscode/add.svg new file mode 100644 index 0000000..7b2fe93 --- /dev/null +++ b/overrides/.icons/vscode/add.svg @@ -0,0 +1 @@ + diff --git a/overrides/.icons/vscode/agent.svg b/overrides/.icons/vscode/agent.svg new file mode 100644 index 0000000..422001e --- /dev/null +++ b/overrides/.icons/vscode/agent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/archive.svg b/overrides/.icons/vscode/archive.svg new file mode 100644 index 0000000..c0e94a7 --- /dev/null +++ b/overrides/.icons/vscode/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-both.svg b/overrides/.icons/vscode/arrow-both.svg new file mode 100644 index 0000000..6c5dcc6 --- /dev/null +++ b/overrides/.icons/vscode/arrow-both.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-circle-down.svg b/overrides/.icons/vscode/arrow-circle-down.svg new file mode 100644 index 0000000..77a5f75 --- /dev/null +++ b/overrides/.icons/vscode/arrow-circle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-circle-left.svg b/overrides/.icons/vscode/arrow-circle-left.svg new file mode 100644 index 0000000..f6f6243 --- /dev/null +++ b/overrides/.icons/vscode/arrow-circle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-circle-right.svg b/overrides/.icons/vscode/arrow-circle-right.svg new file mode 100644 index 0000000..aa0b268 --- /dev/null +++ b/overrides/.icons/vscode/arrow-circle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-circle-up.svg b/overrides/.icons/vscode/arrow-circle-up.svg new file mode 100644 index 0000000..0352938 --- /dev/null +++ b/overrides/.icons/vscode/arrow-circle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-down.svg b/overrides/.icons/vscode/arrow-down.svg new file mode 100644 index 0000000..fde1bfc --- /dev/null +++ b/overrides/.icons/vscode/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-left.svg b/overrides/.icons/vscode/arrow-left.svg new file mode 100644 index 0000000..3344094 --- /dev/null +++ b/overrides/.icons/vscode/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-right.svg b/overrides/.icons/vscode/arrow-right.svg new file mode 100644 index 0000000..50cfc21 --- /dev/null +++ b/overrides/.icons/vscode/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-small-down.svg b/overrides/.icons/vscode/arrow-small-down.svg new file mode 100644 index 0000000..9dc62ec --- /dev/null +++ b/overrides/.icons/vscode/arrow-small-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-small-left.svg b/overrides/.icons/vscode/arrow-small-left.svg new file mode 100644 index 0000000..cc82cdd --- /dev/null +++ b/overrides/.icons/vscode/arrow-small-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-small-right.svg b/overrides/.icons/vscode/arrow-small-right.svg new file mode 100644 index 0000000..4d05578 --- /dev/null +++ b/overrides/.icons/vscode/arrow-small-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-small-up.svg b/overrides/.icons/vscode/arrow-small-up.svg new file mode 100644 index 0000000..4135bbf --- /dev/null +++ b/overrides/.icons/vscode/arrow-small-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-swap.svg b/overrides/.icons/vscode/arrow-swap.svg new file mode 100644 index 0000000..af2febe --- /dev/null +++ b/overrides/.icons/vscode/arrow-swap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/arrow-up.svg b/overrides/.icons/vscode/arrow-up.svg new file mode 100644 index 0000000..bcd870c --- /dev/null +++ b/overrides/.icons/vscode/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/ask.svg b/overrides/.icons/vscode/ask.svg new file mode 100644 index 0000000..f4bcddf --- /dev/null +++ b/overrides/.icons/vscode/ask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/attach.svg b/overrides/.icons/vscode/attach.svg new file mode 100644 index 0000000..496e0c2 --- /dev/null +++ b/overrides/.icons/vscode/attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/azure-devops.svg b/overrides/.icons/vscode/azure-devops.svg new file mode 100644 index 0000000..4e4773e --- /dev/null +++ b/overrides/.icons/vscode/azure-devops.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/azure.svg b/overrides/.icons/vscode/azure.svg new file mode 100644 index 0000000..d0a3f0d --- /dev/null +++ b/overrides/.icons/vscode/azure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/beaker-stop.svg b/overrides/.icons/vscode/beaker-stop.svg new file mode 100644 index 0000000..57999f0 --- /dev/null +++ b/overrides/.icons/vscode/beaker-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/beaker.svg b/overrides/.icons/vscode/beaker.svg new file mode 100644 index 0000000..f3f59da --- /dev/null +++ b/overrides/.icons/vscode/beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bell-dot.svg b/overrides/.icons/vscode/bell-dot.svg new file mode 100644 index 0000000..43c716e --- /dev/null +++ b/overrides/.icons/vscode/bell-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bell-slash-dot.svg b/overrides/.icons/vscode/bell-slash-dot.svg new file mode 100644 index 0000000..13a8f7f --- /dev/null +++ b/overrides/.icons/vscode/bell-slash-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bell-slash.svg b/overrides/.icons/vscode/bell-slash.svg new file mode 100644 index 0000000..2ac2e8f --- /dev/null +++ b/overrides/.icons/vscode/bell-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bell.svg b/overrides/.icons/vscode/bell.svg new file mode 100644 index 0000000..ef4183e --- /dev/null +++ b/overrides/.icons/vscode/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/blank.svg b/overrides/.icons/vscode/blank.svg new file mode 100644 index 0000000..7aacd32 --- /dev/null +++ b/overrides/.icons/vscode/blank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bold.svg b/overrides/.icons/vscode/bold.svg new file mode 100644 index 0000000..5d707aa --- /dev/null +++ b/overrides/.icons/vscode/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/book.svg b/overrides/.icons/vscode/book.svg new file mode 100644 index 0000000..7e31853 --- /dev/null +++ b/overrides/.icons/vscode/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bookmark.svg b/overrides/.icons/vscode/bookmark.svg new file mode 100644 index 0000000..1162f09 --- /dev/null +++ b/overrides/.icons/vscode/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bracket-dot.svg b/overrides/.icons/vscode/bracket-dot.svg new file mode 100644 index 0000000..ba0cac8 --- /dev/null +++ b/overrides/.icons/vscode/bracket-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bracket-error.svg b/overrides/.icons/vscode/bracket-error.svg new file mode 100644 index 0000000..8ebf781 --- /dev/null +++ b/overrides/.icons/vscode/bracket-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/briefcase.svg b/overrides/.icons/vscode/briefcase.svg new file mode 100644 index 0000000..215a738 --- /dev/null +++ b/overrides/.icons/vscode/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/broadcast.svg b/overrides/.icons/vscode/broadcast.svg new file mode 100644 index 0000000..d4abb6b --- /dev/null +++ b/overrides/.icons/vscode/broadcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/browser.svg b/overrides/.icons/vscode/browser.svg new file mode 100644 index 0000000..0e5201d --- /dev/null +++ b/overrides/.icons/vscode/browser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/bug.svg b/overrides/.icons/vscode/bug.svg new file mode 100644 index 0000000..49b1457 --- /dev/null +++ b/overrides/.icons/vscode/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/build.svg b/overrides/.icons/vscode/build.svg new file mode 100644 index 0000000..0c2cdfa --- /dev/null +++ b/overrides/.icons/vscode/build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/calendar.svg b/overrides/.icons/vscode/calendar.svg new file mode 100644 index 0000000..431d931 --- /dev/null +++ b/overrides/.icons/vscode/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/call-incoming.svg b/overrides/.icons/vscode/call-incoming.svg new file mode 100644 index 0000000..0e6258a --- /dev/null +++ b/overrides/.icons/vscode/call-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/call-outgoing.svg b/overrides/.icons/vscode/call-outgoing.svg new file mode 100644 index 0000000..505a321 --- /dev/null +++ b/overrides/.icons/vscode/call-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/case-sensitive.svg b/overrides/.icons/vscode/case-sensitive.svg new file mode 100644 index 0000000..98954a0 --- /dev/null +++ b/overrides/.icons/vscode/case-sensitive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chat-export.svg b/overrides/.icons/vscode/chat-export.svg new file mode 100644 index 0000000..0b75f80 --- /dev/null +++ b/overrides/.icons/vscode/chat-export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chat-import.svg b/overrides/.icons/vscode/chat-import.svg new file mode 100644 index 0000000..691c9c3 --- /dev/null +++ b/overrides/.icons/vscode/chat-import.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chat-sparkle-error.svg b/overrides/.icons/vscode/chat-sparkle-error.svg new file mode 100644 index 0000000..c02a3e6 --- /dev/null +++ b/overrides/.icons/vscode/chat-sparkle-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chat-sparkle-warning.svg b/overrides/.icons/vscode/chat-sparkle-warning.svg new file mode 100644 index 0000000..716410f --- /dev/null +++ b/overrides/.icons/vscode/chat-sparkle-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chat-sparkle.svg b/overrides/.icons/vscode/chat-sparkle.svg new file mode 100644 index 0000000..d6b9df0 --- /dev/null +++ b/overrides/.icons/vscode/chat-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/check-all.svg b/overrides/.icons/vscode/check-all.svg new file mode 100644 index 0000000..3028a6c --- /dev/null +++ b/overrides/.icons/vscode/check-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/check.svg b/overrides/.icons/vscode/check.svg new file mode 100644 index 0000000..6217cb9 --- /dev/null +++ b/overrides/.icons/vscode/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/checklist.svg b/overrides/.icons/vscode/checklist.svg new file mode 100644 index 0000000..b7dfee2 --- /dev/null +++ b/overrides/.icons/vscode/checklist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chevron-down.svg b/overrides/.icons/vscode/chevron-down.svg new file mode 100644 index 0000000..445aba2 --- /dev/null +++ b/overrides/.icons/vscode/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chevron-left.svg b/overrides/.icons/vscode/chevron-left.svg new file mode 100644 index 0000000..d61d175 --- /dev/null +++ b/overrides/.icons/vscode/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chevron-right.svg b/overrides/.icons/vscode/chevron-right.svg new file mode 100644 index 0000000..831a0c9 --- /dev/null +++ b/overrides/.icons/vscode/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chevron-up.svg b/overrides/.icons/vscode/chevron-up.svg new file mode 100644 index 0000000..e2b1769 --- /dev/null +++ b/overrides/.icons/vscode/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chip.svg b/overrides/.icons/vscode/chip.svg new file mode 100644 index 0000000..b2490b2 --- /dev/null +++ b/overrides/.icons/vscode/chip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chrome-close.svg b/overrides/.icons/vscode/chrome-close.svg new file mode 100644 index 0000000..a1c97ef --- /dev/null +++ b/overrides/.icons/vscode/chrome-close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chrome-maximize.svg b/overrides/.icons/vscode/chrome-maximize.svg new file mode 100644 index 0000000..bc0f29a --- /dev/null +++ b/overrides/.icons/vscode/chrome-maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chrome-minimize.svg b/overrides/.icons/vscode/chrome-minimize.svg new file mode 100644 index 0000000..ff59c67 --- /dev/null +++ b/overrides/.icons/vscode/chrome-minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/chrome-restore.svg b/overrides/.icons/vscode/chrome-restore.svg new file mode 100644 index 0000000..efd9ceb --- /dev/null +++ b/overrides/.icons/vscode/chrome-restore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-filled.svg b/overrides/.icons/vscode/circle-filled.svg new file mode 100644 index 0000000..3e224da --- /dev/null +++ b/overrides/.icons/vscode/circle-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-large-filled.svg b/overrides/.icons/vscode/circle-large-filled.svg new file mode 100644 index 0000000..b91aeb5 --- /dev/null +++ b/overrides/.icons/vscode/circle-large-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-large.svg b/overrides/.icons/vscode/circle-large.svg new file mode 100644 index 0000000..7727785 --- /dev/null +++ b/overrides/.icons/vscode/circle-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-slash.svg b/overrides/.icons/vscode/circle-slash.svg new file mode 100644 index 0000000..1e6009c --- /dev/null +++ b/overrides/.icons/vscode/circle-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-small-filled.svg b/overrides/.icons/vscode/circle-small-filled.svg new file mode 100644 index 0000000..81e49aa --- /dev/null +++ b/overrides/.icons/vscode/circle-small-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle-small.svg b/overrides/.icons/vscode/circle-small.svg new file mode 100644 index 0000000..183a2c0 --- /dev/null +++ b/overrides/.icons/vscode/circle-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circle.svg b/overrides/.icons/vscode/circle.svg new file mode 100644 index 0000000..05f8a2b --- /dev/null +++ b/overrides/.icons/vscode/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/circuit-board.svg b/overrides/.icons/vscode/circuit-board.svg new file mode 100644 index 0000000..2dc3d63 --- /dev/null +++ b/overrides/.icons/vscode/circuit-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/claude.svg b/overrides/.icons/vscode/claude.svg new file mode 100644 index 0000000..5a3ecca --- /dev/null +++ b/overrides/.icons/vscode/claude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/clear-all.svg b/overrides/.icons/vscode/clear-all.svg new file mode 100644 index 0000000..8d96f4a --- /dev/null +++ b/overrides/.icons/vscode/clear-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/clippy.svg b/overrides/.icons/vscode/clippy.svg new file mode 100644 index 0000000..cea22d7 --- /dev/null +++ b/overrides/.icons/vscode/clippy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/clockface.svg b/overrides/.icons/vscode/clockface.svg new file mode 100644 index 0000000..edf24dc --- /dev/null +++ b/overrides/.icons/vscode/clockface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/close-all.svg b/overrides/.icons/vscode/close-all.svg new file mode 100644 index 0000000..320f3cc --- /dev/null +++ b/overrides/.icons/vscode/close-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/close.svg b/overrides/.icons/vscode/close.svg new file mode 100644 index 0000000..0333349 --- /dev/null +++ b/overrides/.icons/vscode/close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/cloud-download.svg b/overrides/.icons/vscode/cloud-download.svg new file mode 100644 index 0000000..1fed644 --- /dev/null +++ b/overrides/.icons/vscode/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/cloud-small.svg b/overrides/.icons/vscode/cloud-small.svg new file mode 100644 index 0000000..8f338aa --- /dev/null +++ b/overrides/.icons/vscode/cloud-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/cloud-upload.svg b/overrides/.icons/vscode/cloud-upload.svg new file mode 100644 index 0000000..12791a5 --- /dev/null +++ b/overrides/.icons/vscode/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/cloud.svg b/overrides/.icons/vscode/cloud.svg new file mode 100644 index 0000000..c22c3c1 --- /dev/null +++ b/overrides/.icons/vscode/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/code-oss.svg b/overrides/.icons/vscode/code-oss.svg new file mode 100644 index 0000000..bf4371e --- /dev/null +++ b/overrides/.icons/vscode/code-oss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/code-review.svg b/overrides/.icons/vscode/code-review.svg new file mode 100644 index 0000000..858e36b --- /dev/null +++ b/overrides/.icons/vscode/code-review.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/code.svg b/overrides/.icons/vscode/code.svg new file mode 100644 index 0000000..dedaf8c --- /dev/null +++ b/overrides/.icons/vscode/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/coffee.svg b/overrides/.icons/vscode/coffee.svg new file mode 100644 index 0000000..47722a2 --- /dev/null +++ b/overrides/.icons/vscode/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/collapse-all.svg b/overrides/.icons/vscode/collapse-all.svg new file mode 100644 index 0000000..035053f --- /dev/null +++ b/overrides/.icons/vscode/collapse-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/collection-small.svg b/overrides/.icons/vscode/collection-small.svg new file mode 100644 index 0000000..32a10f5 --- /dev/null +++ b/overrides/.icons/vscode/collection-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/collection.svg b/overrides/.icons/vscode/collection.svg new file mode 100644 index 0000000..6847702 --- /dev/null +++ b/overrides/.icons/vscode/collection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/color-mode.svg b/overrides/.icons/vscode/color-mode.svg new file mode 100644 index 0000000..b5345d7 --- /dev/null +++ b/overrides/.icons/vscode/color-mode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/combine.svg b/overrides/.icons/vscode/combine.svg new file mode 100644 index 0000000..07570c3 --- /dev/null +++ b/overrides/.icons/vscode/combine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment-discussion-quote.svg b/overrides/.icons/vscode/comment-discussion-quote.svg new file mode 100644 index 0000000..809c1fb --- /dev/null +++ b/overrides/.icons/vscode/comment-discussion-quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment-discussion-sparkle.svg b/overrides/.icons/vscode/comment-discussion-sparkle.svg new file mode 100644 index 0000000..27b9c45 --- /dev/null +++ b/overrides/.icons/vscode/comment-discussion-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment-discussion.svg b/overrides/.icons/vscode/comment-discussion.svg new file mode 100644 index 0000000..c53bfd3 --- /dev/null +++ b/overrides/.icons/vscode/comment-discussion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment-draft.svg b/overrides/.icons/vscode/comment-draft.svg new file mode 100644 index 0000000..e67dbde --- /dev/null +++ b/overrides/.icons/vscode/comment-draft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment-unresolved.svg b/overrides/.icons/vscode/comment-unresolved.svg new file mode 100644 index 0000000..e0f79b9 --- /dev/null +++ b/overrides/.icons/vscode/comment-unresolved.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/comment.svg b/overrides/.icons/vscode/comment.svg new file mode 100644 index 0000000..6430691 --- /dev/null +++ b/overrides/.icons/vscode/comment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/compass-active.svg b/overrides/.icons/vscode/compass-active.svg new file mode 100644 index 0000000..a0333ce --- /dev/null +++ b/overrides/.icons/vscode/compass-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/compass-dot.svg b/overrides/.icons/vscode/compass-dot.svg new file mode 100644 index 0000000..9df33cf --- /dev/null +++ b/overrides/.icons/vscode/compass-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/compass.svg b/overrides/.icons/vscode/compass.svg new file mode 100644 index 0000000..44c0579 --- /dev/null +++ b/overrides/.icons/vscode/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-blocked.svg b/overrides/.icons/vscode/copilot-blocked.svg new file mode 100644 index 0000000..5d2b446 --- /dev/null +++ b/overrides/.icons/vscode/copilot-blocked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-error.svg b/overrides/.icons/vscode/copilot-error.svg new file mode 100644 index 0000000..8b01436 --- /dev/null +++ b/overrides/.icons/vscode/copilot-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-in-progress.svg b/overrides/.icons/vscode/copilot-in-progress.svg new file mode 100644 index 0000000..2f512d9 --- /dev/null +++ b/overrides/.icons/vscode/copilot-in-progress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-large.svg b/overrides/.icons/vscode/copilot-large.svg new file mode 100644 index 0000000..8383c21 --- /dev/null +++ b/overrides/.icons/vscode/copilot-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-not-connected.svg b/overrides/.icons/vscode/copilot-not-connected.svg new file mode 100644 index 0000000..4b70a9b --- /dev/null +++ b/overrides/.icons/vscode/copilot-not-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-snooze.svg b/overrides/.icons/vscode/copilot-snooze.svg new file mode 100644 index 0000000..a8b096c --- /dev/null +++ b/overrides/.icons/vscode/copilot-snooze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-success.svg b/overrides/.icons/vscode/copilot-success.svg new file mode 100644 index 0000000..afd7a2c --- /dev/null +++ b/overrides/.icons/vscode/copilot-success.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-unavailable.svg b/overrides/.icons/vscode/copilot-unavailable.svg new file mode 100644 index 0000000..fc4c371 --- /dev/null +++ b/overrides/.icons/vscode/copilot-unavailable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-warning-large.svg b/overrides/.icons/vscode/copilot-warning-large.svg new file mode 100644 index 0000000..71c8da7 --- /dev/null +++ b/overrides/.icons/vscode/copilot-warning-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot-warning.svg b/overrides/.icons/vscode/copilot-warning.svg new file mode 100644 index 0000000..7c09942 --- /dev/null +++ b/overrides/.icons/vscode/copilot-warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copilot.svg b/overrides/.icons/vscode/copilot.svg new file mode 100644 index 0000000..6d52a36 --- /dev/null +++ b/overrides/.icons/vscode/copilot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/copy.svg b/overrides/.icons/vscode/copy.svg new file mode 100644 index 0000000..39a6298 --- /dev/null +++ b/overrides/.icons/vscode/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/coverage.svg b/overrides/.icons/vscode/coverage.svg new file mode 100644 index 0000000..d512049 --- /dev/null +++ b/overrides/.icons/vscode/coverage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/credit-card.svg b/overrides/.icons/vscode/credit-card.svg new file mode 100644 index 0000000..f3f46ce --- /dev/null +++ b/overrides/.icons/vscode/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/cursor.svg b/overrides/.icons/vscode/cursor.svg new file mode 100644 index 0000000..03b0809 --- /dev/null +++ b/overrides/.icons/vscode/cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/dash.svg b/overrides/.icons/vscode/dash.svg new file mode 100644 index 0000000..fc8830e --- /dev/null +++ b/overrides/.icons/vscode/dash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/dashboard.svg b/overrides/.icons/vscode/dashboard.svg new file mode 100644 index 0000000..d135e0a --- /dev/null +++ b/overrides/.icons/vscode/dashboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/database.svg b/overrides/.icons/vscode/database.svg new file mode 100644 index 0000000..4b5a7e6 --- /dev/null +++ b/overrides/.icons/vscode/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-all.svg b/overrides/.icons/vscode/debug-all.svg new file mode 100644 index 0000000..511f90e --- /dev/null +++ b/overrides/.icons/vscode/debug-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-alt-small.svg b/overrides/.icons/vscode/debug-alt-small.svg new file mode 100644 index 0000000..fccad15 --- /dev/null +++ b/overrides/.icons/vscode/debug-alt-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-alt.svg b/overrides/.icons/vscode/debug-alt.svg new file mode 100644 index 0000000..a19d03c --- /dev/null +++ b/overrides/.icons/vscode/debug-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-conditional-unverified.svg b/overrides/.icons/vscode/debug-breakpoint-conditional-unverified.svg new file mode 100644 index 0000000..68562bc --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-conditional-unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-conditional.svg b/overrides/.icons/vscode/debug-breakpoint-conditional.svg new file mode 100644 index 0000000..bd4b07c --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-conditional.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-data-unverified.svg b/overrides/.icons/vscode/debug-breakpoint-data-unverified.svg new file mode 100644 index 0000000..360e5ff --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-data-unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-data.svg b/overrides/.icons/vscode/debug-breakpoint-data.svg new file mode 100644 index 0000000..e3e87e3 --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-data.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-function-unverified.svg b/overrides/.icons/vscode/debug-breakpoint-function-unverified.svg new file mode 100644 index 0000000..c4d4dcc --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-function-unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-function.svg b/overrides/.icons/vscode/debug-breakpoint-function.svg new file mode 100644 index 0000000..316bafa --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-function.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-log-unverified.svg b/overrides/.icons/vscode/debug-breakpoint-log-unverified.svg new file mode 100644 index 0000000..e6ec300 --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-log-unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-log.svg b/overrides/.icons/vscode/debug-breakpoint-log.svg new file mode 100644 index 0000000..1d446c8 --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-log.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-breakpoint-unsupported.svg b/overrides/.icons/vscode/debug-breakpoint-unsupported.svg new file mode 100644 index 0000000..393fc37 --- /dev/null +++ b/overrides/.icons/vscode/debug-breakpoint-unsupported.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-connected.svg b/overrides/.icons/vscode/debug-connected.svg new file mode 100644 index 0000000..407907a --- /dev/null +++ b/overrides/.icons/vscode/debug-connected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-console.svg b/overrides/.icons/vscode/debug-console.svg new file mode 100644 index 0000000..7af504f --- /dev/null +++ b/overrides/.icons/vscode/debug-console.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-continue-small.svg b/overrides/.icons/vscode/debug-continue-small.svg new file mode 100644 index 0000000..bcff30b --- /dev/null +++ b/overrides/.icons/vscode/debug-continue-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-continue.svg b/overrides/.icons/vscode/debug-continue.svg new file mode 100644 index 0000000..12b7e4f --- /dev/null +++ b/overrides/.icons/vscode/debug-continue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-coverage.svg b/overrides/.icons/vscode/debug-coverage.svg new file mode 100644 index 0000000..9e17449 --- /dev/null +++ b/overrides/.icons/vscode/debug-coverage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-disconnect.svg b/overrides/.icons/vscode/debug-disconnect.svg new file mode 100644 index 0000000..8b76d31 --- /dev/null +++ b/overrides/.icons/vscode/debug-disconnect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-line-by-line.svg b/overrides/.icons/vscode/debug-line-by-line.svg new file mode 100644 index 0000000..7e009f0 --- /dev/null +++ b/overrides/.icons/vscode/debug-line-by-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-pause.svg b/overrides/.icons/vscode/debug-pause.svg new file mode 100644 index 0000000..fb1a05f --- /dev/null +++ b/overrides/.icons/vscode/debug-pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-rerun.svg b/overrides/.icons/vscode/debug-rerun.svg new file mode 100644 index 0000000..570758a --- /dev/null +++ b/overrides/.icons/vscode/debug-rerun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-restart-frame.svg b/overrides/.icons/vscode/debug-restart-frame.svg new file mode 100644 index 0000000..3de1195 --- /dev/null +++ b/overrides/.icons/vscode/debug-restart-frame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-restart.svg b/overrides/.icons/vscode/debug-restart.svg new file mode 100644 index 0000000..75b5776 --- /dev/null +++ b/overrides/.icons/vscode/debug-restart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-reverse-continue.svg b/overrides/.icons/vscode/debug-reverse-continue.svg new file mode 100644 index 0000000..ac4d2fd --- /dev/null +++ b/overrides/.icons/vscode/debug-reverse-continue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-stackframe-active.svg b/overrides/.icons/vscode/debug-stackframe-active.svg new file mode 100644 index 0000000..319122a --- /dev/null +++ b/overrides/.icons/vscode/debug-stackframe-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-stackframe.svg b/overrides/.icons/vscode/debug-stackframe.svg new file mode 100644 index 0000000..47500b4 --- /dev/null +++ b/overrides/.icons/vscode/debug-stackframe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-start.svg b/overrides/.icons/vscode/debug-start.svg new file mode 100644 index 0000000..8d3f583 --- /dev/null +++ b/overrides/.icons/vscode/debug-start.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-step-back.svg b/overrides/.icons/vscode/debug-step-back.svg new file mode 100644 index 0000000..e42a85d --- /dev/null +++ b/overrides/.icons/vscode/debug-step-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-step-into.svg b/overrides/.icons/vscode/debug-step-into.svg new file mode 100644 index 0000000..5628752 --- /dev/null +++ b/overrides/.icons/vscode/debug-step-into.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-step-out.svg b/overrides/.icons/vscode/debug-step-out.svg new file mode 100644 index 0000000..9fa9c63 --- /dev/null +++ b/overrides/.icons/vscode/debug-step-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-step-over.svg b/overrides/.icons/vscode/debug-step-over.svg new file mode 100644 index 0000000..8894196 --- /dev/null +++ b/overrides/.icons/vscode/debug-step-over.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug-stop.svg b/overrides/.icons/vscode/debug-stop.svg new file mode 100644 index 0000000..ada1ae5 --- /dev/null +++ b/overrides/.icons/vscode/debug-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/debug.svg b/overrides/.icons/vscode/debug.svg new file mode 100644 index 0000000..b180078 --- /dev/null +++ b/overrides/.icons/vscode/debug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/desktop-download.svg b/overrides/.icons/vscode/desktop-download.svg new file mode 100644 index 0000000..7323116 --- /dev/null +++ b/overrides/.icons/vscode/desktop-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/device-camera-video.svg b/overrides/.icons/vscode/device-camera-video.svg new file mode 100644 index 0000000..a09b839 --- /dev/null +++ b/overrides/.icons/vscode/device-camera-video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/device-camera.svg b/overrides/.icons/vscode/device-camera.svg new file mode 100644 index 0000000..b400ee4 --- /dev/null +++ b/overrides/.icons/vscode/device-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/device-mobile.svg b/overrides/.icons/vscode/device-mobile.svg new file mode 100644 index 0000000..285a72e --- /dev/null +++ b/overrides/.icons/vscode/device-mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-added.svg b/overrides/.icons/vscode/diff-added.svg new file mode 100644 index 0000000..96e554b --- /dev/null +++ b/overrides/.icons/vscode/diff-added.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-ignored.svg b/overrides/.icons/vscode/diff-ignored.svg new file mode 100644 index 0000000..eae6ce6 --- /dev/null +++ b/overrides/.icons/vscode/diff-ignored.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-modified.svg b/overrides/.icons/vscode/diff-modified.svg new file mode 100644 index 0000000..e83081e --- /dev/null +++ b/overrides/.icons/vscode/diff-modified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-multiple.svg b/overrides/.icons/vscode/diff-multiple.svg new file mode 100644 index 0000000..5bb1774 --- /dev/null +++ b/overrides/.icons/vscode/diff-multiple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-removed.svg b/overrides/.icons/vscode/diff-removed.svg new file mode 100644 index 0000000..4f1a461 --- /dev/null +++ b/overrides/.icons/vscode/diff-removed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-renamed.svg b/overrides/.icons/vscode/diff-renamed.svg new file mode 100644 index 0000000..8d1e7ec --- /dev/null +++ b/overrides/.icons/vscode/diff-renamed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff-single.svg b/overrides/.icons/vscode/diff-single.svg new file mode 100644 index 0000000..749801b --- /dev/null +++ b/overrides/.icons/vscode/diff-single.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/diff.svg b/overrides/.icons/vscode/diff.svg new file mode 100644 index 0000000..bb7be8a --- /dev/null +++ b/overrides/.icons/vscode/diff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/discard.svg b/overrides/.icons/vscode/discard.svg new file mode 100644 index 0000000..b7434c9 --- /dev/null +++ b/overrides/.icons/vscode/discard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/download.svg b/overrides/.icons/vscode/download.svg new file mode 100644 index 0000000..77c31a9 --- /dev/null +++ b/overrides/.icons/vscode/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/edit-code.svg b/overrides/.icons/vscode/edit-code.svg new file mode 100644 index 0000000..144b803 --- /dev/null +++ b/overrides/.icons/vscode/edit-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/edit-session.svg b/overrides/.icons/vscode/edit-session.svg new file mode 100644 index 0000000..5b8edd1 --- /dev/null +++ b/overrides/.icons/vscode/edit-session.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/edit-sparkle.svg b/overrides/.icons/vscode/edit-sparkle.svg new file mode 100644 index 0000000..5eb0ab6 --- /dev/null +++ b/overrides/.icons/vscode/edit-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/edit.svg b/overrides/.icons/vscode/edit.svg new file mode 100644 index 0000000..7642adb --- /dev/null +++ b/overrides/.icons/vscode/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/editor-layout.svg b/overrides/.icons/vscode/editor-layout.svg new file mode 100644 index 0000000..c925fb3 --- /dev/null +++ b/overrides/.icons/vscode/editor-layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/ellipsis.svg b/overrides/.icons/vscode/ellipsis.svg new file mode 100644 index 0000000..7b16539 --- /dev/null +++ b/overrides/.icons/vscode/ellipsis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/empty-window.svg b/overrides/.icons/vscode/empty-window.svg new file mode 100644 index 0000000..177a0f7 --- /dev/null +++ b/overrides/.icons/vscode/empty-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/eraser.svg b/overrides/.icons/vscode/eraser.svg new file mode 100644 index 0000000..848f8ed --- /dev/null +++ b/overrides/.icons/vscode/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/error-small.svg b/overrides/.icons/vscode/error-small.svg new file mode 100644 index 0000000..93d6900 --- /dev/null +++ b/overrides/.icons/vscode/error-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/error.svg b/overrides/.icons/vscode/error.svg new file mode 100644 index 0000000..9ceb299 --- /dev/null +++ b/overrides/.icons/vscode/error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/exclude.svg b/overrides/.icons/vscode/exclude.svg new file mode 100644 index 0000000..eb82a8b --- /dev/null +++ b/overrides/.icons/vscode/exclude.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/expand-all.svg b/overrides/.icons/vscode/expand-all.svg new file mode 100644 index 0000000..81b9253 --- /dev/null +++ b/overrides/.icons/vscode/expand-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/export.svg b/overrides/.icons/vscode/export.svg new file mode 100644 index 0000000..ad03241 --- /dev/null +++ b/overrides/.icons/vscode/export.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/extensions-large.svg b/overrides/.icons/vscode/extensions-large.svg new file mode 100644 index 0000000..a060f8b --- /dev/null +++ b/overrides/.icons/vscode/extensions-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/extensions.svg b/overrides/.icons/vscode/extensions.svg new file mode 100644 index 0000000..1c113b0 --- /dev/null +++ b/overrides/.icons/vscode/extensions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/eye-closed.svg b/overrides/.icons/vscode/eye-closed.svg new file mode 100644 index 0000000..868d38a --- /dev/null +++ b/overrides/.icons/vscode/eye-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/eye.svg b/overrides/.icons/vscode/eye.svg new file mode 100644 index 0000000..551729d --- /dev/null +++ b/overrides/.icons/vscode/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/feedback.svg b/overrides/.icons/vscode/feedback.svg new file mode 100644 index 0000000..2de89fd --- /dev/null +++ b/overrides/.icons/vscode/feedback.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-binary.svg b/overrides/.icons/vscode/file-binary.svg new file mode 100644 index 0000000..b8effff --- /dev/null +++ b/overrides/.icons/vscode/file-binary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-code.svg b/overrides/.icons/vscode/file-code.svg new file mode 100644 index 0000000..331bc1f --- /dev/null +++ b/overrides/.icons/vscode/file-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-media.svg b/overrides/.icons/vscode/file-media.svg new file mode 100644 index 0000000..3c4625a --- /dev/null +++ b/overrides/.icons/vscode/file-media.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-pdf.svg b/overrides/.icons/vscode/file-pdf.svg new file mode 100644 index 0000000..2cf2edd --- /dev/null +++ b/overrides/.icons/vscode/file-pdf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-submodule.svg b/overrides/.icons/vscode/file-submodule.svg new file mode 100644 index 0000000..84f600a --- /dev/null +++ b/overrides/.icons/vscode/file-submodule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-symlink-directory.svg b/overrides/.icons/vscode/file-symlink-directory.svg new file mode 100644 index 0000000..41450eb --- /dev/null +++ b/overrides/.icons/vscode/file-symlink-directory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-symlink-file.svg b/overrides/.icons/vscode/file-symlink-file.svg new file mode 100644 index 0000000..ce72dd3 --- /dev/null +++ b/overrides/.icons/vscode/file-symlink-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-text.svg b/overrides/.icons/vscode/file-text.svg new file mode 100644 index 0000000..98db68a --- /dev/null +++ b/overrides/.icons/vscode/file-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file-zip.svg b/overrides/.icons/vscode/file-zip.svg new file mode 100644 index 0000000..39975e6 --- /dev/null +++ b/overrides/.icons/vscode/file-zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/file.svg b/overrides/.icons/vscode/file.svg new file mode 100644 index 0000000..31d6076 --- /dev/null +++ b/overrides/.icons/vscode/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/files.svg b/overrides/.icons/vscode/files.svg new file mode 100644 index 0000000..9582a9d --- /dev/null +++ b/overrides/.icons/vscode/files.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/filter-filled.svg b/overrides/.icons/vscode/filter-filled.svg new file mode 100644 index 0000000..eb4e19f --- /dev/null +++ b/overrides/.icons/vscode/filter-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/filter.svg b/overrides/.icons/vscode/filter.svg new file mode 100644 index 0000000..9c5b6fd --- /dev/null +++ b/overrides/.icons/vscode/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/flag.svg b/overrides/.icons/vscode/flag.svg new file mode 100644 index 0000000..f1682d0 --- /dev/null +++ b/overrides/.icons/vscode/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/flame.svg b/overrides/.icons/vscode/flame.svg new file mode 100644 index 0000000..a7be020 --- /dev/null +++ b/overrides/.icons/vscode/flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/fold-down.svg b/overrides/.icons/vscode/fold-down.svg new file mode 100644 index 0000000..92a243c --- /dev/null +++ b/overrides/.icons/vscode/fold-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/fold-up.svg b/overrides/.icons/vscode/fold-up.svg new file mode 100644 index 0000000..097d513 --- /dev/null +++ b/overrides/.icons/vscode/fold-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/fold.svg b/overrides/.icons/vscode/fold.svg new file mode 100644 index 0000000..4468afd --- /dev/null +++ b/overrides/.icons/vscode/fold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/folder-active.svg b/overrides/.icons/vscode/folder-active.svg new file mode 100644 index 0000000..92e5f34 --- /dev/null +++ b/overrides/.icons/vscode/folder-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/folder-library.svg b/overrides/.icons/vscode/folder-library.svg new file mode 100644 index 0000000..89486c5 --- /dev/null +++ b/overrides/.icons/vscode/folder-library.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/folder-opened.svg b/overrides/.icons/vscode/folder-opened.svg new file mode 100644 index 0000000..4a8779b --- /dev/null +++ b/overrides/.icons/vscode/folder-opened.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/folder.svg b/overrides/.icons/vscode/folder.svg new file mode 100644 index 0000000..a669796 --- /dev/null +++ b/overrides/.icons/vscode/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/forward.svg b/overrides/.icons/vscode/forward.svg new file mode 100644 index 0000000..6e860dc --- /dev/null +++ b/overrides/.icons/vscode/forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/game.svg b/overrides/.icons/vscode/game.svg new file mode 100644 index 0000000..8763a03 --- /dev/null +++ b/overrides/.icons/vscode/game.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/gear.svg b/overrides/.icons/vscode/gear.svg new file mode 100644 index 0000000..f527fd3 --- /dev/null +++ b/overrides/.icons/vscode/gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/gift.svg b/overrides/.icons/vscode/gift.svg new file mode 100644 index 0000000..b9ec70b --- /dev/null +++ b/overrides/.icons/vscode/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/gist-secret.svg b/overrides/.icons/vscode/gist-secret.svg new file mode 100644 index 0000000..9beb6ec --- /dev/null +++ b/overrides/.icons/vscode/gist-secret.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/gist.svg b/overrides/.icons/vscode/gist.svg new file mode 100644 index 0000000..7721c03 --- /dev/null +++ b/overrides/.icons/vscode/gist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-branch-changes.svg b/overrides/.icons/vscode/git-branch-changes.svg new file mode 100644 index 0000000..78d592a --- /dev/null +++ b/overrides/.icons/vscode/git-branch-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-branch-conflicts.svg b/overrides/.icons/vscode/git-branch-conflicts.svg new file mode 100644 index 0000000..1da6b80 --- /dev/null +++ b/overrides/.icons/vscode/git-branch-conflicts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-branch-staged-changes.svg b/overrides/.icons/vscode/git-branch-staged-changes.svg new file mode 100644 index 0000000..2d76052 --- /dev/null +++ b/overrides/.icons/vscode/git-branch-staged-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-branch.svg b/overrides/.icons/vscode/git-branch.svg new file mode 100644 index 0000000..6418d1f --- /dev/null +++ b/overrides/.icons/vscode/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-commit.svg b/overrides/.icons/vscode/git-commit.svg new file mode 100644 index 0000000..ecce26c --- /dev/null +++ b/overrides/.icons/vscode/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-compare.svg b/overrides/.icons/vscode/git-compare.svg new file mode 100644 index 0000000..193a80c --- /dev/null +++ b/overrides/.icons/vscode/git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-fetch.svg b/overrides/.icons/vscode/git-fetch.svg new file mode 100644 index 0000000..6ad8e40 --- /dev/null +++ b/overrides/.icons/vscode/git-fetch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-merge.svg b/overrides/.icons/vscode/git-merge.svg new file mode 100644 index 0000000..63dbdc3 --- /dev/null +++ b/overrides/.icons/vscode/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-closed.svg b/overrides/.icons/vscode/git-pull-request-closed.svg new file mode 100644 index 0000000..bce2914 --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-create.svg b/overrides/.icons/vscode/git-pull-request-create.svg new file mode 100644 index 0000000..1918193 --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-done.svg b/overrides/.icons/vscode/git-pull-request-done.svg new file mode 100644 index 0000000..fb6744b --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-draft.svg b/overrides/.icons/vscode/git-pull-request-draft.svg new file mode 100644 index 0000000..0afee6e --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-draft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-go-to-changes.svg b/overrides/.icons/vscode/git-pull-request-go-to-changes.svg new file mode 100644 index 0000000..e6e05f2 --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-go-to-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request-new-changes.svg b/overrides/.icons/vscode/git-pull-request-new-changes.svg new file mode 100644 index 0000000..285e813 --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request-new-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-pull-request.svg b/overrides/.icons/vscode/git-pull-request.svg new file mode 100644 index 0000000..47a216d --- /dev/null +++ b/overrides/.icons/vscode/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-stash-apply.svg b/overrides/.icons/vscode/git-stash-apply.svg new file mode 100644 index 0000000..fac0fe9 --- /dev/null +++ b/overrides/.icons/vscode/git-stash-apply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-stash-pop.svg b/overrides/.icons/vscode/git-stash-pop.svg new file mode 100644 index 0000000..74b494f --- /dev/null +++ b/overrides/.icons/vscode/git-stash-pop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/git-stash.svg b/overrides/.icons/vscode/git-stash.svg new file mode 100644 index 0000000..425b08b --- /dev/null +++ b/overrides/.icons/vscode/git-stash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/github-action.svg b/overrides/.icons/vscode/github-action.svg new file mode 100644 index 0000000..ab28160 --- /dev/null +++ b/overrides/.icons/vscode/github-action.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/github-alt.svg b/overrides/.icons/vscode/github-alt.svg new file mode 100644 index 0000000..a77f3a6 --- /dev/null +++ b/overrides/.icons/vscode/github-alt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/github-inverted.svg b/overrides/.icons/vscode/github-inverted.svg new file mode 100644 index 0000000..e583b75 --- /dev/null +++ b/overrides/.icons/vscode/github-inverted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/github-project.svg b/overrides/.icons/vscode/github-project.svg new file mode 100644 index 0000000..d240cf2 --- /dev/null +++ b/overrides/.icons/vscode/github-project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/github.svg b/overrides/.icons/vscode/github.svg new file mode 100644 index 0000000..28c1a39 --- /dev/null +++ b/overrides/.icons/vscode/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/globe.svg b/overrides/.icons/vscode/globe.svg new file mode 100644 index 0000000..9031271 --- /dev/null +++ b/overrides/.icons/vscode/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/go-to-editing-session.svg b/overrides/.icons/vscode/go-to-editing-session.svg new file mode 100644 index 0000000..166ae19 --- /dev/null +++ b/overrides/.icons/vscode/go-to-editing-session.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/go-to-file.svg b/overrides/.icons/vscode/go-to-file.svg new file mode 100644 index 0000000..c11a995 --- /dev/null +++ b/overrides/.icons/vscode/go-to-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/go-to-search.svg b/overrides/.icons/vscode/go-to-search.svg new file mode 100644 index 0000000..3df34fe --- /dev/null +++ b/overrides/.icons/vscode/go-to-search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/grabber.svg b/overrides/.icons/vscode/grabber.svg new file mode 100644 index 0000000..3e9ea26 --- /dev/null +++ b/overrides/.icons/vscode/grabber.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/graph-left.svg b/overrides/.icons/vscode/graph-left.svg new file mode 100644 index 0000000..3dbe3ac --- /dev/null +++ b/overrides/.icons/vscode/graph-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/graph-line.svg b/overrides/.icons/vscode/graph-line.svg new file mode 100644 index 0000000..b287adf --- /dev/null +++ b/overrides/.icons/vscode/graph-line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/graph-scatter.svg b/overrides/.icons/vscode/graph-scatter.svg new file mode 100644 index 0000000..b8ecde7 --- /dev/null +++ b/overrides/.icons/vscode/graph-scatter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/graph.svg b/overrides/.icons/vscode/graph.svg new file mode 100644 index 0000000..1f35554 --- /dev/null +++ b/overrides/.icons/vscode/graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/gripper.svg b/overrides/.icons/vscode/gripper.svg new file mode 100644 index 0000000..e8a207a --- /dev/null +++ b/overrides/.icons/vscode/gripper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/group-by-ref-type.svg b/overrides/.icons/vscode/group-by-ref-type.svg new file mode 100644 index 0000000..981afa8 --- /dev/null +++ b/overrides/.icons/vscode/group-by-ref-type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/heart-filled.svg b/overrides/.icons/vscode/heart-filled.svg new file mode 100644 index 0000000..123e890 --- /dev/null +++ b/overrides/.icons/vscode/heart-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/heart.svg b/overrides/.icons/vscode/heart.svg new file mode 100644 index 0000000..d7e53b5 --- /dev/null +++ b/overrides/.icons/vscode/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/history.svg b/overrides/.icons/vscode/history.svg new file mode 100644 index 0000000..a6c0a49 --- /dev/null +++ b/overrides/.icons/vscode/history.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/home.svg b/overrides/.icons/vscode/home.svg new file mode 100644 index 0000000..43af9d1 --- /dev/null +++ b/overrides/.icons/vscode/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/horizontal-rule.svg b/overrides/.icons/vscode/horizontal-rule.svg new file mode 100644 index 0000000..8b720c3 --- /dev/null +++ b/overrides/.icons/vscode/horizontal-rule.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/hubot.svg b/overrides/.icons/vscode/hubot.svg new file mode 100644 index 0000000..e796a28 --- /dev/null +++ b/overrides/.icons/vscode/hubot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/inbox.svg b/overrides/.icons/vscode/inbox.svg new file mode 100644 index 0000000..45af4b6 --- /dev/null +++ b/overrides/.icons/vscode/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/indent.svg b/overrides/.icons/vscode/indent.svg new file mode 100644 index 0000000..9d48589 --- /dev/null +++ b/overrides/.icons/vscode/indent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/index-zero.svg b/overrides/.icons/vscode/index-zero.svg new file mode 100644 index 0000000..2711b0c --- /dev/null +++ b/overrides/.icons/vscode/index-zero.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/info.svg b/overrides/.icons/vscode/info.svg new file mode 100644 index 0000000..c3bd957 --- /dev/null +++ b/overrides/.icons/vscode/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/insert.svg b/overrides/.icons/vscode/insert.svg new file mode 100644 index 0000000..405434b --- /dev/null +++ b/overrides/.icons/vscode/insert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/inspect.svg b/overrides/.icons/vscode/inspect.svg new file mode 100644 index 0000000..b31cc92 --- /dev/null +++ b/overrides/.icons/vscode/inspect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/issue-draft.svg b/overrides/.icons/vscode/issue-draft.svg new file mode 100644 index 0000000..e16b07c --- /dev/null +++ b/overrides/.icons/vscode/issue-draft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/issue-reopened.svg b/overrides/.icons/vscode/issue-reopened.svg new file mode 100644 index 0000000..aa98214 --- /dev/null +++ b/overrides/.icons/vscode/issue-reopened.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/issues.svg b/overrides/.icons/vscode/issues.svg new file mode 100644 index 0000000..7de219b --- /dev/null +++ b/overrides/.icons/vscode/issues.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/italic.svg b/overrides/.icons/vscode/italic.svg new file mode 100644 index 0000000..97cfd49 --- /dev/null +++ b/overrides/.icons/vscode/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/jersey.svg b/overrides/.icons/vscode/jersey.svg new file mode 100644 index 0000000..b6ce1f9 --- /dev/null +++ b/overrides/.icons/vscode/jersey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/json.svg b/overrides/.icons/vscode/json.svg new file mode 100644 index 0000000..a3ff4fa --- /dev/null +++ b/overrides/.icons/vscode/json.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/kebab-vertical.svg b/overrides/.icons/vscode/kebab-vertical.svg new file mode 100644 index 0000000..41cdbb1 --- /dev/null +++ b/overrides/.icons/vscode/kebab-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/key.svg b/overrides/.icons/vscode/key.svg new file mode 100644 index 0000000..0cf854b --- /dev/null +++ b/overrides/.icons/vscode/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/keyboard-tab-above.svg b/overrides/.icons/vscode/keyboard-tab-above.svg new file mode 100644 index 0000000..5ee07a7 --- /dev/null +++ b/overrides/.icons/vscode/keyboard-tab-above.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/keyboard-tab-below.svg b/overrides/.icons/vscode/keyboard-tab-below.svg new file mode 100644 index 0000000..5870194 --- /dev/null +++ b/overrides/.icons/vscode/keyboard-tab-below.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/keyboard-tab.svg b/overrides/.icons/vscode/keyboard-tab.svg new file mode 100644 index 0000000..1fc0d91 --- /dev/null +++ b/overrides/.icons/vscode/keyboard-tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/law.svg b/overrides/.icons/vscode/law.svg new file mode 100644 index 0000000..2a583d5 --- /dev/null +++ b/overrides/.icons/vscode/law.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layers-active.svg b/overrides/.icons/vscode/layers-active.svg new file mode 100644 index 0000000..12b8191 --- /dev/null +++ b/overrides/.icons/vscode/layers-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layers-dot.svg b/overrides/.icons/vscode/layers-dot.svg new file mode 100644 index 0000000..d136608 --- /dev/null +++ b/overrides/.icons/vscode/layers-dot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layers.svg b/overrides/.icons/vscode/layers.svg new file mode 100644 index 0000000..6344884 --- /dev/null +++ b/overrides/.icons/vscode/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-activitybar-left.svg b/overrides/.icons/vscode/layout-activitybar-left.svg new file mode 100644 index 0000000..72e54b6 --- /dev/null +++ b/overrides/.icons/vscode/layout-activitybar-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-activitybar-right.svg b/overrides/.icons/vscode/layout-activitybar-right.svg new file mode 100644 index 0000000..e921f15 --- /dev/null +++ b/overrides/.icons/vscode/layout-activitybar-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-centered.svg b/overrides/.icons/vscode/layout-centered.svg new file mode 100644 index 0000000..ce93d59 --- /dev/null +++ b/overrides/.icons/vscode/layout-centered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-menubar.svg b/overrides/.icons/vscode/layout-menubar.svg new file mode 100644 index 0000000..497547f --- /dev/null +++ b/overrides/.icons/vscode/layout-menubar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-center.svg b/overrides/.icons/vscode/layout-panel-center.svg new file mode 100644 index 0000000..3a60434 --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-dock.svg b/overrides/.icons/vscode/layout-panel-dock.svg new file mode 100644 index 0000000..d880b0e --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-justify.svg b/overrides/.icons/vscode/layout-panel-justify.svg new file mode 100644 index 0000000..2c6c317 --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-left.svg b/overrides/.icons/vscode/layout-panel-left.svg new file mode 100644 index 0000000..782ad3c --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-off.svg b/overrides/.icons/vscode/layout-panel-off.svg new file mode 100644 index 0000000..2a37eca --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel-right.svg b/overrides/.icons/vscode/layout-panel-right.svg new file mode 100644 index 0000000..8c1642a --- /dev/null +++ b/overrides/.icons/vscode/layout-panel-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-panel.svg b/overrides/.icons/vscode/layout-panel.svg new file mode 100644 index 0000000..548fdbc --- /dev/null +++ b/overrides/.icons/vscode/layout-panel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-left-dock.svg b/overrides/.icons/vscode/layout-sidebar-left-dock.svg new file mode 100644 index 0000000..75e560f --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-left-dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-left-off.svg b/overrides/.icons/vscode/layout-sidebar-left-off.svg new file mode 100644 index 0000000..dfccba6 --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-left-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-left.svg b/overrides/.icons/vscode/layout-sidebar-left.svg new file mode 100644 index 0000000..ccc60a2 --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-right-dock.svg b/overrides/.icons/vscode/layout-sidebar-right-dock.svg new file mode 100644 index 0000000..c4bf00f --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-right-dock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-right-off.svg b/overrides/.icons/vscode/layout-sidebar-right-off.svg new file mode 100644 index 0000000..5539a14 --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-right-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-sidebar-right.svg b/overrides/.icons/vscode/layout-sidebar-right.svg new file mode 100644 index 0000000..719fd78 --- /dev/null +++ b/overrides/.icons/vscode/layout-sidebar-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout-statusbar.svg b/overrides/.icons/vscode/layout-statusbar.svg new file mode 100644 index 0000000..4782b7f --- /dev/null +++ b/overrides/.icons/vscode/layout-statusbar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/layout.svg b/overrides/.icons/vscode/layout.svg new file mode 100644 index 0000000..60d2f11 --- /dev/null +++ b/overrides/.icons/vscode/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/library.svg b/overrides/.icons/vscode/library.svg new file mode 100644 index 0000000..b1aa329 --- /dev/null +++ b/overrides/.icons/vscode/library.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lightbulb-autofix.svg b/overrides/.icons/vscode/lightbulb-autofix.svg new file mode 100644 index 0000000..6f8e63b --- /dev/null +++ b/overrides/.icons/vscode/lightbulb-autofix.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lightbulb-empty.svg b/overrides/.icons/vscode/lightbulb-empty.svg new file mode 100644 index 0000000..4642a98 --- /dev/null +++ b/overrides/.icons/vscode/lightbulb-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lightbulb-sparkle.svg b/overrides/.icons/vscode/lightbulb-sparkle.svg new file mode 100644 index 0000000..5b3ca9c --- /dev/null +++ b/overrides/.icons/vscode/lightbulb-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lightbulb.svg b/overrides/.icons/vscode/lightbulb.svg new file mode 100644 index 0000000..4290026 --- /dev/null +++ b/overrides/.icons/vscode/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/link-external.svg b/overrides/.icons/vscode/link-external.svg new file mode 100644 index 0000000..ded2e00 --- /dev/null +++ b/overrides/.icons/vscode/link-external.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/link.svg b/overrides/.icons/vscode/link.svg new file mode 100644 index 0000000..2469b90 --- /dev/null +++ b/overrides/.icons/vscode/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-filter.svg b/overrides/.icons/vscode/list-filter.svg new file mode 100644 index 0000000..0ef089d --- /dev/null +++ b/overrides/.icons/vscode/list-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-flat.svg b/overrides/.icons/vscode/list-flat.svg new file mode 100644 index 0000000..55ef82c --- /dev/null +++ b/overrides/.icons/vscode/list-flat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-ordered.svg b/overrides/.icons/vscode/list-ordered.svg new file mode 100644 index 0000000..d2c61f1 --- /dev/null +++ b/overrides/.icons/vscode/list-ordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-selection.svg b/overrides/.icons/vscode/list-selection.svg new file mode 100644 index 0000000..c32c184 --- /dev/null +++ b/overrides/.icons/vscode/list-selection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-tree.svg b/overrides/.icons/vscode/list-tree.svg new file mode 100644 index 0000000..368d9fb --- /dev/null +++ b/overrides/.icons/vscode/list-tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/list-unordered.svg b/overrides/.icons/vscode/list-unordered.svg new file mode 100644 index 0000000..38f024f --- /dev/null +++ b/overrides/.icons/vscode/list-unordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/live-share.svg b/overrides/.icons/vscode/live-share.svg new file mode 100644 index 0000000..39d375f --- /dev/null +++ b/overrides/.icons/vscode/live-share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/loading.svg b/overrides/.icons/vscode/loading.svg new file mode 100644 index 0000000..57a717a --- /dev/null +++ b/overrides/.icons/vscode/loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/location.svg b/overrides/.icons/vscode/location.svg new file mode 100644 index 0000000..8210946 --- /dev/null +++ b/overrides/.icons/vscode/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lock-small.svg b/overrides/.icons/vscode/lock-small.svg new file mode 100644 index 0000000..5816b55 --- /dev/null +++ b/overrides/.icons/vscode/lock-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/lock.svg b/overrides/.icons/vscode/lock.svg new file mode 100644 index 0000000..6a191ad --- /dev/null +++ b/overrides/.icons/vscode/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/magnet.svg b/overrides/.icons/vscode/magnet.svg new file mode 100644 index 0000000..32fb9f3 --- /dev/null +++ b/overrides/.icons/vscode/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mail-read.svg b/overrides/.icons/vscode/mail-read.svg new file mode 100644 index 0000000..baa13d9 --- /dev/null +++ b/overrides/.icons/vscode/mail-read.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mail.svg b/overrides/.icons/vscode/mail.svg new file mode 100644 index 0000000..a24aa29 --- /dev/null +++ b/overrides/.icons/vscode/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/map-filled.svg b/overrides/.icons/vscode/map-filled.svg new file mode 100644 index 0000000..90987a7 --- /dev/null +++ b/overrides/.icons/vscode/map-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/map-vertical-filled.svg b/overrides/.icons/vscode/map-vertical-filled.svg new file mode 100644 index 0000000..a896a11 --- /dev/null +++ b/overrides/.icons/vscode/map-vertical-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/map-vertical.svg b/overrides/.icons/vscode/map-vertical.svg new file mode 100644 index 0000000..640a372 --- /dev/null +++ b/overrides/.icons/vscode/map-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/map.svg b/overrides/.icons/vscode/map.svg new file mode 100644 index 0000000..4518899 --- /dev/null +++ b/overrides/.icons/vscode/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/markdown.svg b/overrides/.icons/vscode/markdown.svg new file mode 100644 index 0000000..5cc4c0e --- /dev/null +++ b/overrides/.icons/vscode/markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mcp.svg b/overrides/.icons/vscode/mcp.svg new file mode 100644 index 0000000..7b52991 --- /dev/null +++ b/overrides/.icons/vscode/mcp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/megaphone.svg b/overrides/.icons/vscode/megaphone.svg new file mode 100644 index 0000000..41b1ffe --- /dev/null +++ b/overrides/.icons/vscode/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mention.svg b/overrides/.icons/vscode/mention.svg new file mode 100644 index 0000000..464c04f --- /dev/null +++ b/overrides/.icons/vscode/mention.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/menu.svg b/overrides/.icons/vscode/menu.svg new file mode 100644 index 0000000..6fc8b91 --- /dev/null +++ b/overrides/.icons/vscode/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/merge-into.svg b/overrides/.icons/vscode/merge-into.svg new file mode 100644 index 0000000..7533070 --- /dev/null +++ b/overrides/.icons/vscode/merge-into.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/merge.svg b/overrides/.icons/vscode/merge.svg new file mode 100644 index 0000000..2692dee --- /dev/null +++ b/overrides/.icons/vscode/merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mic-filled.svg b/overrides/.icons/vscode/mic-filled.svg new file mode 100644 index 0000000..dd82bc4 --- /dev/null +++ b/overrides/.icons/vscode/mic-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mic.svg b/overrides/.icons/vscode/mic.svg new file mode 100644 index 0000000..b9ce1ff --- /dev/null +++ b/overrides/.icons/vscode/mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/milestone.svg b/overrides/.icons/vscode/milestone.svg new file mode 100644 index 0000000..3d2f9db --- /dev/null +++ b/overrides/.icons/vscode/milestone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mirror.svg b/overrides/.icons/vscode/mirror.svg new file mode 100644 index 0000000..fc9e376 --- /dev/null +++ b/overrides/.icons/vscode/mirror.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mortar-board.svg b/overrides/.icons/vscode/mortar-board.svg new file mode 100644 index 0000000..3b26cd6 --- /dev/null +++ b/overrides/.icons/vscode/mortar-board.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/move.svg b/overrides/.icons/vscode/move.svg new file mode 100644 index 0000000..37bb84a --- /dev/null +++ b/overrides/.icons/vscode/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/multiple-windows.svg b/overrides/.icons/vscode/multiple-windows.svg new file mode 100644 index 0000000..e0701c1 --- /dev/null +++ b/overrides/.icons/vscode/multiple-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/music.svg b/overrides/.icons/vscode/music.svg new file mode 100644 index 0000000..e6fc67b --- /dev/null +++ b/overrides/.icons/vscode/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/mute.svg b/overrides/.icons/vscode/mute.svg new file mode 100644 index 0000000..8cf77be --- /dev/null +++ b/overrides/.icons/vscode/mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/new-collection.svg b/overrides/.icons/vscode/new-collection.svg new file mode 100644 index 0000000..5bd6536 --- /dev/null +++ b/overrides/.icons/vscode/new-collection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/new-file.svg b/overrides/.icons/vscode/new-file.svg new file mode 100644 index 0000000..fecbb5f --- /dev/null +++ b/overrides/.icons/vscode/new-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/new-folder.svg b/overrides/.icons/vscode/new-folder.svg new file mode 100644 index 0000000..d5547e2 --- /dev/null +++ b/overrides/.icons/vscode/new-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/new-session.svg b/overrides/.icons/vscode/new-session.svg new file mode 100644 index 0000000..b5fe731 --- /dev/null +++ b/overrides/.icons/vscode/new-session.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/newline.svg b/overrides/.icons/vscode/newline.svg new file mode 100644 index 0000000..537c5b0 --- /dev/null +++ b/overrides/.icons/vscode/newline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/no-newline.svg b/overrides/.icons/vscode/no-newline.svg new file mode 100644 index 0000000..6700c45 --- /dev/null +++ b/overrides/.icons/vscode/no-newline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/note.svg b/overrides/.icons/vscode/note.svg new file mode 100644 index 0000000..01e96c6 --- /dev/null +++ b/overrides/.icons/vscode/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/notebook-template.svg b/overrides/.icons/vscode/notebook-template.svg new file mode 100644 index 0000000..67aaf65 --- /dev/null +++ b/overrides/.icons/vscode/notebook-template.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/notebook.svg b/overrides/.icons/vscode/notebook.svg new file mode 100644 index 0000000..d9ad6e4 --- /dev/null +++ b/overrides/.icons/vscode/notebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/octoface.svg b/overrides/.icons/vscode/octoface.svg new file mode 100644 index 0000000..6c90408 --- /dev/null +++ b/overrides/.icons/vscode/octoface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/open-in-product.svg b/overrides/.icons/vscode/open-in-product.svg new file mode 100644 index 0000000..7f03c40 --- /dev/null +++ b/overrides/.icons/vscode/open-in-product.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/open-in-window.svg b/overrides/.icons/vscode/open-in-window.svg new file mode 100644 index 0000000..d1a4175 --- /dev/null +++ b/overrides/.icons/vscode/open-in-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/open-preview.svg b/overrides/.icons/vscode/open-preview.svg new file mode 100644 index 0000000..a04514b --- /dev/null +++ b/overrides/.icons/vscode/open-preview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/openai.svg b/overrides/.icons/vscode/openai.svg new file mode 100644 index 0000000..b780d84 --- /dev/null +++ b/overrides/.icons/vscode/openai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/organization.svg b/overrides/.icons/vscode/organization.svg new file mode 100644 index 0000000..90f90d4 --- /dev/null +++ b/overrides/.icons/vscode/organization.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/output.svg b/overrides/.icons/vscode/output.svg new file mode 100644 index 0000000..841958c --- /dev/null +++ b/overrides/.icons/vscode/output.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/package.svg b/overrides/.icons/vscode/package.svg new file mode 100644 index 0000000..73de24e --- /dev/null +++ b/overrides/.icons/vscode/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/paintcan.svg b/overrides/.icons/vscode/paintcan.svg new file mode 100644 index 0000000..88613e8 --- /dev/null +++ b/overrides/.icons/vscode/paintcan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pass-filled.svg b/overrides/.icons/vscode/pass-filled.svg new file mode 100644 index 0000000..e20711e --- /dev/null +++ b/overrides/.icons/vscode/pass-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pass.svg b/overrides/.icons/vscode/pass.svg new file mode 100644 index 0000000..9380137 --- /dev/null +++ b/overrides/.icons/vscode/pass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/percentage.svg b/overrides/.icons/vscode/percentage.svg new file mode 100644 index 0000000..9349404 --- /dev/null +++ b/overrides/.icons/vscode/percentage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/person-add.svg b/overrides/.icons/vscode/person-add.svg new file mode 100644 index 0000000..44a1d67 --- /dev/null +++ b/overrides/.icons/vscode/person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/person.svg b/overrides/.icons/vscode/person.svg new file mode 100644 index 0000000..ca9906f --- /dev/null +++ b/overrides/.icons/vscode/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/piano.svg b/overrides/.icons/vscode/piano.svg new file mode 100644 index 0000000..34e3823 --- /dev/null +++ b/overrides/.icons/vscode/piano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pie-chart.svg b/overrides/.icons/vscode/pie-chart.svg new file mode 100644 index 0000000..471cc6d --- /dev/null +++ b/overrides/.icons/vscode/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pin.svg b/overrides/.icons/vscode/pin.svg new file mode 100644 index 0000000..152002d --- /dev/null +++ b/overrides/.icons/vscode/pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pinned-dirty.svg b/overrides/.icons/vscode/pinned-dirty.svg new file mode 100644 index 0000000..06b5380 --- /dev/null +++ b/overrides/.icons/vscode/pinned-dirty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pinned.svg b/overrides/.icons/vscode/pinned.svg new file mode 100644 index 0000000..dfb1b33 --- /dev/null +++ b/overrides/.icons/vscode/pinned.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/play-circle.svg b/overrides/.icons/vscode/play-circle.svg new file mode 100644 index 0000000..373611b --- /dev/null +++ b/overrides/.icons/vscode/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/play.svg b/overrides/.icons/vscode/play.svg new file mode 100644 index 0000000..bb6880d --- /dev/null +++ b/overrides/.icons/vscode/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/plug.svg b/overrides/.icons/vscode/plug.svg new file mode 100644 index 0000000..c5034e1 --- /dev/null +++ b/overrides/.icons/vscode/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/preserve-case.svg b/overrides/.icons/vscode/preserve-case.svg new file mode 100644 index 0000000..30c29d3 --- /dev/null +++ b/overrides/.icons/vscode/preserve-case.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/preview.svg b/overrides/.icons/vscode/preview.svg new file mode 100644 index 0000000..83b3b47 --- /dev/null +++ b/overrides/.icons/vscode/preview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/primitive-square.svg b/overrides/.icons/vscode/primitive-square.svg new file mode 100644 index 0000000..56b36de --- /dev/null +++ b/overrides/.icons/vscode/primitive-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/project.svg b/overrides/.icons/vscode/project.svg new file mode 100644 index 0000000..6b75db1 --- /dev/null +++ b/overrides/.icons/vscode/project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/pulse.svg b/overrides/.icons/vscode/pulse.svg new file mode 100644 index 0000000..0b62aaf --- /dev/null +++ b/overrides/.icons/vscode/pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/python.svg b/overrides/.icons/vscode/python.svg new file mode 100644 index 0000000..a832a9e --- /dev/null +++ b/overrides/.icons/vscode/python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/question.svg b/overrides/.icons/vscode/question.svg new file mode 100644 index 0000000..467b195 --- /dev/null +++ b/overrides/.icons/vscode/question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/quote.svg b/overrides/.icons/vscode/quote.svg new file mode 100644 index 0000000..4dc1dd3 --- /dev/null +++ b/overrides/.icons/vscode/quote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/quotes.svg b/overrides/.icons/vscode/quotes.svg new file mode 100644 index 0000000..286a4cc --- /dev/null +++ b/overrides/.icons/vscode/quotes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/radio-tower.svg b/overrides/.icons/vscode/radio-tower.svg new file mode 100644 index 0000000..92a1811 --- /dev/null +++ b/overrides/.icons/vscode/radio-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/reactions.svg b/overrides/.icons/vscode/reactions.svg new file mode 100644 index 0000000..a82883f --- /dev/null +++ b/overrides/.icons/vscode/reactions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/record-keys.svg b/overrides/.icons/vscode/record-keys.svg new file mode 100644 index 0000000..d8faaa2 --- /dev/null +++ b/overrides/.icons/vscode/record-keys.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/record-small.svg b/overrides/.icons/vscode/record-small.svg new file mode 100644 index 0000000..14f200e --- /dev/null +++ b/overrides/.icons/vscode/record-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/record.svg b/overrides/.icons/vscode/record.svg new file mode 100644 index 0000000..028f085 --- /dev/null +++ b/overrides/.icons/vscode/record.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/redo.svg b/overrides/.icons/vscode/redo.svg new file mode 100644 index 0000000..8d6e323 --- /dev/null +++ b/overrides/.icons/vscode/redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/references.svg b/overrides/.icons/vscode/references.svg new file mode 100644 index 0000000..97465c9 --- /dev/null +++ b/overrides/.icons/vscode/references.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/refresh.svg b/overrides/.icons/vscode/refresh.svg new file mode 100644 index 0000000..49df22b --- /dev/null +++ b/overrides/.icons/vscode/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/regex.svg b/overrides/.icons/vscode/regex.svg new file mode 100644 index 0000000..1ee5186 --- /dev/null +++ b/overrides/.icons/vscode/regex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/remote-explorer.svg b/overrides/.icons/vscode/remote-explorer.svg new file mode 100644 index 0000000..4162e42 --- /dev/null +++ b/overrides/.icons/vscode/remote-explorer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/remote.svg b/overrides/.icons/vscode/remote.svg new file mode 100644 index 0000000..f2ab212 --- /dev/null +++ b/overrides/.icons/vscode/remote.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/remove-small.svg b/overrides/.icons/vscode/remove-small.svg new file mode 100644 index 0000000..befafcf --- /dev/null +++ b/overrides/.icons/vscode/remove-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/remove.svg b/overrides/.icons/vscode/remove.svg new file mode 100644 index 0000000..fef6714 --- /dev/null +++ b/overrides/.icons/vscode/remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/rename.svg b/overrides/.icons/vscode/rename.svg new file mode 100644 index 0000000..7560d72 --- /dev/null +++ b/overrides/.icons/vscode/rename.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/replace-all.svg b/overrides/.icons/vscode/replace-all.svg new file mode 100644 index 0000000..70e8054 --- /dev/null +++ b/overrides/.icons/vscode/replace-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/replace.svg b/overrides/.icons/vscode/replace.svg new file mode 100644 index 0000000..6125e24 --- /dev/null +++ b/overrides/.icons/vscode/replace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/reply.svg b/overrides/.icons/vscode/reply.svg new file mode 100644 index 0000000..39d8437 --- /dev/null +++ b/overrides/.icons/vscode/reply.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-clone.svg b/overrides/.icons/vscode/repo-clone.svg new file mode 100644 index 0000000..94e570f --- /dev/null +++ b/overrides/.icons/vscode/repo-clone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-fetch.svg b/overrides/.icons/vscode/repo-fetch.svg new file mode 100644 index 0000000..199a561 --- /dev/null +++ b/overrides/.icons/vscode/repo-fetch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-force-push.svg b/overrides/.icons/vscode/repo-force-push.svg new file mode 100644 index 0000000..ebbd596 --- /dev/null +++ b/overrides/.icons/vscode/repo-force-push.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-forked.svg b/overrides/.icons/vscode/repo-forked.svg new file mode 100644 index 0000000..f0b532c --- /dev/null +++ b/overrides/.icons/vscode/repo-forked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-pinned.svg b/overrides/.icons/vscode/repo-pinned.svg new file mode 100644 index 0000000..f40ef6a --- /dev/null +++ b/overrides/.icons/vscode/repo-pinned.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-pull.svg b/overrides/.icons/vscode/repo-pull.svg new file mode 100644 index 0000000..2a42ff7 --- /dev/null +++ b/overrides/.icons/vscode/repo-pull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-push.svg b/overrides/.icons/vscode/repo-push.svg new file mode 100644 index 0000000..51998c9 --- /dev/null +++ b/overrides/.icons/vscode/repo-push.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo-selected.svg b/overrides/.icons/vscode/repo-selected.svg new file mode 100644 index 0000000..dc599db --- /dev/null +++ b/overrides/.icons/vscode/repo-selected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/repo.svg b/overrides/.icons/vscode/repo.svg new file mode 100644 index 0000000..7fc1245 --- /dev/null +++ b/overrides/.icons/vscode/repo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/report.svg b/overrides/.icons/vscode/report.svg new file mode 100644 index 0000000..fe26a4f --- /dev/null +++ b/overrides/.icons/vscode/report.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/request-changes.svg b/overrides/.icons/vscode/request-changes.svg new file mode 100644 index 0000000..749801b --- /dev/null +++ b/overrides/.icons/vscode/request-changes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/robot.svg b/overrides/.icons/vscode/robot.svg new file mode 100644 index 0000000..f4960af --- /dev/null +++ b/overrides/.icons/vscode/robot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/rocket.svg b/overrides/.icons/vscode/rocket.svg new file mode 100644 index 0000000..ee89073 --- /dev/null +++ b/overrides/.icons/vscode/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/root-folder-opened.svg b/overrides/.icons/vscode/root-folder-opened.svg new file mode 100644 index 0000000..32f5056 --- /dev/null +++ b/overrides/.icons/vscode/root-folder-opened.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/root-folder.svg b/overrides/.icons/vscode/root-folder.svg new file mode 100644 index 0000000..c178580 --- /dev/null +++ b/overrides/.icons/vscode/root-folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/rss.svg b/overrides/.icons/vscode/rss.svg new file mode 100644 index 0000000..6f39a40 --- /dev/null +++ b/overrides/.icons/vscode/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/ruby.svg b/overrides/.icons/vscode/ruby.svg new file mode 100644 index 0000000..f615253 --- /dev/null +++ b/overrides/.icons/vscode/ruby.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-above.svg b/overrides/.icons/vscode/run-above.svg new file mode 100644 index 0000000..d45fd53 --- /dev/null +++ b/overrides/.icons/vscode/run-above.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-all-coverage.svg b/overrides/.icons/vscode/run-all-coverage.svg new file mode 100644 index 0000000..91bc63e --- /dev/null +++ b/overrides/.icons/vscode/run-all-coverage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-all.svg b/overrides/.icons/vscode/run-all.svg new file mode 100644 index 0000000..1628446 --- /dev/null +++ b/overrides/.icons/vscode/run-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-below.svg b/overrides/.icons/vscode/run-below.svg new file mode 100644 index 0000000..8973970 --- /dev/null +++ b/overrides/.icons/vscode/run-below.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-coverage.svg b/overrides/.icons/vscode/run-coverage.svg new file mode 100644 index 0000000..c4e2bce --- /dev/null +++ b/overrides/.icons/vscode/run-coverage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-errors.svg b/overrides/.icons/vscode/run-errors.svg new file mode 100644 index 0000000..e4c29f2 --- /dev/null +++ b/overrides/.icons/vscode/run-errors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/run-with-deps.svg b/overrides/.icons/vscode/run-with-deps.svg new file mode 100644 index 0000000..35801e3 --- /dev/null +++ b/overrides/.icons/vscode/run-with-deps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/save-all.svg b/overrides/.icons/vscode/save-all.svg new file mode 100644 index 0000000..dd31bce --- /dev/null +++ b/overrides/.icons/vscode/save-all.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/save-as.svg b/overrides/.icons/vscode/save-as.svg new file mode 100644 index 0000000..d279804 --- /dev/null +++ b/overrides/.icons/vscode/save-as.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/save.svg b/overrides/.icons/vscode/save.svg new file mode 100644 index 0000000..532997a --- /dev/null +++ b/overrides/.icons/vscode/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/screen-cut.svg b/overrides/.icons/vscode/screen-cut.svg new file mode 100644 index 0000000..f63edb7 --- /dev/null +++ b/overrides/.icons/vscode/screen-cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/screen-full.svg b/overrides/.icons/vscode/screen-full.svg new file mode 100644 index 0000000..32e26e5 --- /dev/null +++ b/overrides/.icons/vscode/screen-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/screen-normal.svg b/overrides/.icons/vscode/screen-normal.svg new file mode 100644 index 0000000..1360f2d --- /dev/null +++ b/overrides/.icons/vscode/screen-normal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/search-fuzzy.svg b/overrides/.icons/vscode/search-fuzzy.svg new file mode 100644 index 0000000..24d3eeb --- /dev/null +++ b/overrides/.icons/vscode/search-fuzzy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/search-large.svg b/overrides/.icons/vscode/search-large.svg new file mode 100644 index 0000000..041e153 --- /dev/null +++ b/overrides/.icons/vscode/search-large.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/search-sparkle.svg b/overrides/.icons/vscode/search-sparkle.svg new file mode 100644 index 0000000..a14449c --- /dev/null +++ b/overrides/.icons/vscode/search-sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/search-stop.svg b/overrides/.icons/vscode/search-stop.svg new file mode 100644 index 0000000..851ab83 --- /dev/null +++ b/overrides/.icons/vscode/search-stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/search.svg b/overrides/.icons/vscode/search.svg new file mode 100644 index 0000000..f8249b1 --- /dev/null +++ b/overrides/.icons/vscode/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/send-to-remote-agent.svg b/overrides/.icons/vscode/send-to-remote-agent.svg new file mode 100644 index 0000000..d517f1e --- /dev/null +++ b/overrides/.icons/vscode/send-to-remote-agent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/send.svg b/overrides/.icons/vscode/send.svg new file mode 100644 index 0000000..d727478 --- /dev/null +++ b/overrides/.icons/vscode/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/server-environment.svg b/overrides/.icons/vscode/server-environment.svg new file mode 100644 index 0000000..7c973b9 --- /dev/null +++ b/overrides/.icons/vscode/server-environment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/server-process.svg b/overrides/.icons/vscode/server-process.svg new file mode 100644 index 0000000..cafb154 --- /dev/null +++ b/overrides/.icons/vscode/server-process.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/server.svg b/overrides/.icons/vscode/server.svg new file mode 100644 index 0000000..ac42aed --- /dev/null +++ b/overrides/.icons/vscode/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/session-in-progress.svg b/overrides/.icons/vscode/session-in-progress.svg new file mode 100644 index 0000000..32925f9 --- /dev/null +++ b/overrides/.icons/vscode/session-in-progress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/settings-gear.svg b/overrides/.icons/vscode/settings-gear.svg new file mode 100644 index 0000000..cdc25f1 --- /dev/null +++ b/overrides/.icons/vscode/settings-gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/settings.svg b/overrides/.icons/vscode/settings.svg new file mode 100644 index 0000000..0f1b128 --- /dev/null +++ b/overrides/.icons/vscode/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/share-window.svg b/overrides/.icons/vscode/share-window.svg new file mode 100644 index 0000000..96d0f11 --- /dev/null +++ b/overrides/.icons/vscode/share-window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/share.svg b/overrides/.icons/vscode/share.svg new file mode 100644 index 0000000..7eff37a --- /dev/null +++ b/overrides/.icons/vscode/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/shield.svg b/overrides/.icons/vscode/shield.svg new file mode 100644 index 0000000..b1b5517 --- /dev/null +++ b/overrides/.icons/vscode/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sign-in.svg b/overrides/.icons/vscode/sign-in.svg new file mode 100644 index 0000000..930bfd5 --- /dev/null +++ b/overrides/.icons/vscode/sign-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sign-out.svg b/overrides/.icons/vscode/sign-out.svg new file mode 100644 index 0000000..9867d8b --- /dev/null +++ b/overrides/.icons/vscode/sign-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/skip.svg b/overrides/.icons/vscode/skip.svg new file mode 100644 index 0000000..f9dcd2d --- /dev/null +++ b/overrides/.icons/vscode/skip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/smiley.svg b/overrides/.icons/vscode/smiley.svg new file mode 100644 index 0000000..c5094f2 --- /dev/null +++ b/overrides/.icons/vscode/smiley.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/snake.svg b/overrides/.icons/vscode/snake.svg new file mode 100644 index 0000000..d054ac2 --- /dev/null +++ b/overrides/.icons/vscode/snake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sort-precedence.svg b/overrides/.icons/vscode/sort-precedence.svg new file mode 100644 index 0000000..395f3e8 --- /dev/null +++ b/overrides/.icons/vscode/sort-precedence.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/source-control.svg b/overrides/.icons/vscode/source-control.svg new file mode 100644 index 0000000..c40e566 --- /dev/null +++ b/overrides/.icons/vscode/source-control.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sparkle-filled.svg b/overrides/.icons/vscode/sparkle-filled.svg new file mode 100644 index 0000000..98108b3 --- /dev/null +++ b/overrides/.icons/vscode/sparkle-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sparkle.svg b/overrides/.icons/vscode/sparkle.svg new file mode 100644 index 0000000..cacf8d2 --- /dev/null +++ b/overrides/.icons/vscode/sparkle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/split-horizontal.svg b/overrides/.icons/vscode/split-horizontal.svg new file mode 100644 index 0000000..74b7a5e --- /dev/null +++ b/overrides/.icons/vscode/split-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/split-vertical.svg b/overrides/.icons/vscode/split-vertical.svg new file mode 100644 index 0000000..fd88e74 --- /dev/null +++ b/overrides/.icons/vscode/split-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/squirrel.svg b/overrides/.icons/vscode/squirrel.svg new file mode 100644 index 0000000..f3d6f17 --- /dev/null +++ b/overrides/.icons/vscode/squirrel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/star-empty.svg b/overrides/.icons/vscode/star-empty.svg new file mode 100644 index 0000000..391094d --- /dev/null +++ b/overrides/.icons/vscode/star-empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/star-full.svg b/overrides/.icons/vscode/star-full.svg new file mode 100644 index 0000000..e06ba69 --- /dev/null +++ b/overrides/.icons/vscode/star-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/star-half.svg b/overrides/.icons/vscode/star-half.svg new file mode 100644 index 0000000..e86fad9 --- /dev/null +++ b/overrides/.icons/vscode/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/stop-circle.svg b/overrides/.icons/vscode/stop-circle.svg new file mode 100644 index 0000000..9970ad8 --- /dev/null +++ b/overrides/.icons/vscode/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/strikethrough.svg b/overrides/.icons/vscode/strikethrough.svg new file mode 100644 index 0000000..2744ebe --- /dev/null +++ b/overrides/.icons/vscode/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/surround-with.svg b/overrides/.icons/vscode/surround-with.svg new file mode 100644 index 0000000..082c1b7 --- /dev/null +++ b/overrides/.icons/vscode/surround-with.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-array.svg b/overrides/.icons/vscode/symbol-array.svg new file mode 100644 index 0000000..8de0f6e --- /dev/null +++ b/overrides/.icons/vscode/symbol-array.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-boolean.svg b/overrides/.icons/vscode/symbol-boolean.svg new file mode 100644 index 0000000..673ac05 --- /dev/null +++ b/overrides/.icons/vscode/symbol-boolean.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-class.svg b/overrides/.icons/vscode/symbol-class.svg new file mode 100644 index 0000000..26fb8b2 --- /dev/null +++ b/overrides/.icons/vscode/symbol-class.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-color.svg b/overrides/.icons/vscode/symbol-color.svg new file mode 100644 index 0000000..dbb927e --- /dev/null +++ b/overrides/.icons/vscode/symbol-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-constant.svg b/overrides/.icons/vscode/symbol-constant.svg new file mode 100644 index 0000000..f17583b --- /dev/null +++ b/overrides/.icons/vscode/symbol-constant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-enum-member.svg b/overrides/.icons/vscode/symbol-enum-member.svg new file mode 100644 index 0000000..b1c6171 --- /dev/null +++ b/overrides/.icons/vscode/symbol-enum-member.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-enum.svg b/overrides/.icons/vscode/symbol-enum.svg new file mode 100644 index 0000000..c9bc85f --- /dev/null +++ b/overrides/.icons/vscode/symbol-enum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-event.svg b/overrides/.icons/vscode/symbol-event.svg new file mode 100644 index 0000000..5b39a0a --- /dev/null +++ b/overrides/.icons/vscode/symbol-event.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-field.svg b/overrides/.icons/vscode/symbol-field.svg new file mode 100644 index 0000000..9ee1315 --- /dev/null +++ b/overrides/.icons/vscode/symbol-field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-file.svg b/overrides/.icons/vscode/symbol-file.svg new file mode 100644 index 0000000..31d6076 --- /dev/null +++ b/overrides/.icons/vscode/symbol-file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-interface.svg b/overrides/.icons/vscode/symbol-interface.svg new file mode 100644 index 0000000..fcb84d1 --- /dev/null +++ b/overrides/.icons/vscode/symbol-interface.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-key.svg b/overrides/.icons/vscode/symbol-key.svg new file mode 100644 index 0000000..326a1cc --- /dev/null +++ b/overrides/.icons/vscode/symbol-key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-keyword.svg b/overrides/.icons/vscode/symbol-keyword.svg new file mode 100644 index 0000000..48453d2 --- /dev/null +++ b/overrides/.icons/vscode/symbol-keyword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-method-arrow.svg b/overrides/.icons/vscode/symbol-method-arrow.svg new file mode 100644 index 0000000..34c091f --- /dev/null +++ b/overrides/.icons/vscode/symbol-method-arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-method.svg b/overrides/.icons/vscode/symbol-method.svg new file mode 100644 index 0000000..1ca9ea8 --- /dev/null +++ b/overrides/.icons/vscode/symbol-method.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-misc.svg b/overrides/.icons/vscode/symbol-misc.svg new file mode 100644 index 0000000..01017b7 --- /dev/null +++ b/overrides/.icons/vscode/symbol-misc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-namespace.svg b/overrides/.icons/vscode/symbol-namespace.svg new file mode 100644 index 0000000..a3ff4fa --- /dev/null +++ b/overrides/.icons/vscode/symbol-namespace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-numeric.svg b/overrides/.icons/vscode/symbol-numeric.svg new file mode 100644 index 0000000..30f6bae --- /dev/null +++ b/overrides/.icons/vscode/symbol-numeric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-operator.svg b/overrides/.icons/vscode/symbol-operator.svg new file mode 100644 index 0000000..f1528a3 --- /dev/null +++ b/overrides/.icons/vscode/symbol-operator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-parameter.svg b/overrides/.icons/vscode/symbol-parameter.svg new file mode 100644 index 0000000..f30132d --- /dev/null +++ b/overrides/.icons/vscode/symbol-parameter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-property.svg b/overrides/.icons/vscode/symbol-property.svg new file mode 100644 index 0000000..ca196ad --- /dev/null +++ b/overrides/.icons/vscode/symbol-property.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-ruler.svg b/overrides/.icons/vscode/symbol-ruler.svg new file mode 100644 index 0000000..a283b91 --- /dev/null +++ b/overrides/.icons/vscode/symbol-ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-snippet.svg b/overrides/.icons/vscode/symbol-snippet.svg new file mode 100644 index 0000000..38f266b --- /dev/null +++ b/overrides/.icons/vscode/symbol-snippet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-string.svg b/overrides/.icons/vscode/symbol-string.svg new file mode 100644 index 0000000..326a1cc --- /dev/null +++ b/overrides/.icons/vscode/symbol-string.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-structure.svg b/overrides/.icons/vscode/symbol-structure.svg new file mode 100644 index 0000000..7cfde96 --- /dev/null +++ b/overrides/.icons/vscode/symbol-structure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/symbol-variable.svg b/overrides/.icons/vscode/symbol-variable.svg new file mode 100644 index 0000000..d37f81c --- /dev/null +++ b/overrides/.icons/vscode/symbol-variable.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sync-ignored.svg b/overrides/.icons/vscode/sync-ignored.svg new file mode 100644 index 0000000..7ce8635 --- /dev/null +++ b/overrides/.icons/vscode/sync-ignored.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/sync.svg b/overrides/.icons/vscode/sync.svg new file mode 100644 index 0000000..1767194 --- /dev/null +++ b/overrides/.icons/vscode/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/table.svg b/overrides/.icons/vscode/table.svg new file mode 100644 index 0000000..c5a7443 --- /dev/null +++ b/overrides/.icons/vscode/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/tag.svg b/overrides/.icons/vscode/tag.svg new file mode 100644 index 0000000..788540b --- /dev/null +++ b/overrides/.icons/vscode/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/target.svg b/overrides/.icons/vscode/target.svg new file mode 100644 index 0000000..ec67355 --- /dev/null +++ b/overrides/.icons/vscode/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/tasklist.svg b/overrides/.icons/vscode/tasklist.svg new file mode 100644 index 0000000..c9b951f --- /dev/null +++ b/overrides/.icons/vscode/tasklist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/telescope.svg b/overrides/.icons/vscode/telescope.svg new file mode 100644 index 0000000..ca75105 --- /dev/null +++ b/overrides/.icons/vscode/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-bash.svg b/overrides/.icons/vscode/terminal-bash.svg new file mode 100644 index 0000000..3a97256 --- /dev/null +++ b/overrides/.icons/vscode/terminal-bash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-cmd.svg b/overrides/.icons/vscode/terminal-cmd.svg new file mode 100644 index 0000000..95be0e5 --- /dev/null +++ b/overrides/.icons/vscode/terminal-cmd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-debian.svg b/overrides/.icons/vscode/terminal-debian.svg new file mode 100644 index 0000000..466a547 --- /dev/null +++ b/overrides/.icons/vscode/terminal-debian.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-git-bash.svg b/overrides/.icons/vscode/terminal-git-bash.svg new file mode 100644 index 0000000..45c6459 --- /dev/null +++ b/overrides/.icons/vscode/terminal-git-bash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-linux.svg b/overrides/.icons/vscode/terminal-linux.svg new file mode 100644 index 0000000..672ac9d --- /dev/null +++ b/overrides/.icons/vscode/terminal-linux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-powershell.svg b/overrides/.icons/vscode/terminal-powershell.svg new file mode 100644 index 0000000..81be90d --- /dev/null +++ b/overrides/.icons/vscode/terminal-powershell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-secure.svg b/overrides/.icons/vscode/terminal-secure.svg new file mode 100644 index 0000000..717006d --- /dev/null +++ b/overrides/.icons/vscode/terminal-secure.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-tmux.svg b/overrides/.icons/vscode/terminal-tmux.svg new file mode 100644 index 0000000..813d9fa --- /dev/null +++ b/overrides/.icons/vscode/terminal-tmux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal-ubuntu.svg b/overrides/.icons/vscode/terminal-ubuntu.svg new file mode 100644 index 0000000..74d7b01 --- /dev/null +++ b/overrides/.icons/vscode/terminal-ubuntu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/terminal.svg b/overrides/.icons/vscode/terminal.svg new file mode 100644 index 0000000..3b1b1a3 --- /dev/null +++ b/overrides/.icons/vscode/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/text-size.svg b/overrides/.icons/vscode/text-size.svg new file mode 100644 index 0000000..bdba104 --- /dev/null +++ b/overrides/.icons/vscode/text-size.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/thinking.svg b/overrides/.icons/vscode/thinking.svg new file mode 100644 index 0000000..2a7c0df --- /dev/null +++ b/overrides/.icons/vscode/thinking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/three-bars.svg b/overrides/.icons/vscode/three-bars.svg new file mode 100644 index 0000000..b318808 --- /dev/null +++ b/overrides/.icons/vscode/three-bars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/thumbsdown-filled.svg b/overrides/.icons/vscode/thumbsdown-filled.svg new file mode 100644 index 0000000..4292e6f --- /dev/null +++ b/overrides/.icons/vscode/thumbsdown-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/thumbsdown.svg b/overrides/.icons/vscode/thumbsdown.svg new file mode 100644 index 0000000..9a28c78 --- /dev/null +++ b/overrides/.icons/vscode/thumbsdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/thumbsup-filled.svg b/overrides/.icons/vscode/thumbsup-filled.svg new file mode 100644 index 0000000..e556f72 --- /dev/null +++ b/overrides/.icons/vscode/thumbsup-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/thumbsup.svg b/overrides/.icons/vscode/thumbsup.svg new file mode 100644 index 0000000..1aee99c --- /dev/null +++ b/overrides/.icons/vscode/thumbsup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/tools.svg b/overrides/.icons/vscode/tools.svg new file mode 100644 index 0000000..d835c25 --- /dev/null +++ b/overrides/.icons/vscode/tools.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/trash.svg b/overrides/.icons/vscode/trash.svg new file mode 100644 index 0000000..fd1c66a --- /dev/null +++ b/overrides/.icons/vscode/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/triangle-down.svg b/overrides/.icons/vscode/triangle-down.svg new file mode 100644 index 0000000..5193317 --- /dev/null +++ b/overrides/.icons/vscode/triangle-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/triangle-left.svg b/overrides/.icons/vscode/triangle-left.svg new file mode 100644 index 0000000..3a96300 --- /dev/null +++ b/overrides/.icons/vscode/triangle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/triangle-right.svg b/overrides/.icons/vscode/triangle-right.svg new file mode 100644 index 0000000..2703a5a --- /dev/null +++ b/overrides/.icons/vscode/triangle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/triangle-up.svg b/overrides/.icons/vscode/triangle-up.svg new file mode 100644 index 0000000..c28cb7c --- /dev/null +++ b/overrides/.icons/vscode/triangle-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/twitter.svg b/overrides/.icons/vscode/twitter.svg new file mode 100644 index 0000000..5a38696 --- /dev/null +++ b/overrides/.icons/vscode/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/type-hierarchy-sub.svg b/overrides/.icons/vscode/type-hierarchy-sub.svg new file mode 100644 index 0000000..6026fb8 --- /dev/null +++ b/overrides/.icons/vscode/type-hierarchy-sub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/type-hierarchy-super.svg b/overrides/.icons/vscode/type-hierarchy-super.svg new file mode 100644 index 0000000..ef98714 --- /dev/null +++ b/overrides/.icons/vscode/type-hierarchy-super.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/type-hierarchy.svg b/overrides/.icons/vscode/type-hierarchy.svg new file mode 100644 index 0000000..56f1d6b --- /dev/null +++ b/overrides/.icons/vscode/type-hierarchy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/unarchive.svg b/overrides/.icons/vscode/unarchive.svg new file mode 100644 index 0000000..43a7ded --- /dev/null +++ b/overrides/.icons/vscode/unarchive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/unfold.svg b/overrides/.icons/vscode/unfold.svg new file mode 100644 index 0000000..61e380c --- /dev/null +++ b/overrides/.icons/vscode/unfold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/ungroup-by-ref-type.svg b/overrides/.icons/vscode/ungroup-by-ref-type.svg new file mode 100644 index 0000000..6720029 --- /dev/null +++ b/overrides/.icons/vscode/ungroup-by-ref-type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/unlock.svg b/overrides/.icons/vscode/unlock.svg new file mode 100644 index 0000000..3354394 --- /dev/null +++ b/overrides/.icons/vscode/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/unmute.svg b/overrides/.icons/vscode/unmute.svg new file mode 100644 index 0000000..75b4c3d --- /dev/null +++ b/overrides/.icons/vscode/unmute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/unverified.svg b/overrides/.icons/vscode/unverified.svg new file mode 100644 index 0000000..11cf7c0 --- /dev/null +++ b/overrides/.icons/vscode/unverified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/variable-group.svg b/overrides/.icons/vscode/variable-group.svg new file mode 100644 index 0000000..eca1c3e --- /dev/null +++ b/overrides/.icons/vscode/variable-group.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/verified-filled.svg b/overrides/.icons/vscode/verified-filled.svg new file mode 100644 index 0000000..420f4de --- /dev/null +++ b/overrides/.icons/vscode/verified-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/verified.svg b/overrides/.icons/vscode/verified.svg new file mode 100644 index 0000000..06e3cdd --- /dev/null +++ b/overrides/.icons/vscode/verified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/versions.svg b/overrides/.icons/vscode/versions.svg new file mode 100644 index 0000000..e0701c1 --- /dev/null +++ b/overrides/.icons/vscode/versions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-active.svg b/overrides/.icons/vscode/vm-active.svg new file mode 100644 index 0000000..a75158d --- /dev/null +++ b/overrides/.icons/vscode/vm-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-connect.svg b/overrides/.icons/vscode/vm-connect.svg new file mode 100644 index 0000000..78ab1d8 --- /dev/null +++ b/overrides/.icons/vscode/vm-connect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-outline.svg b/overrides/.icons/vscode/vm-outline.svg new file mode 100644 index 0000000..eb960dd --- /dev/null +++ b/overrides/.icons/vscode/vm-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-pending.svg b/overrides/.icons/vscode/vm-pending.svg new file mode 100644 index 0000000..f8b9f26 --- /dev/null +++ b/overrides/.icons/vscode/vm-pending.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-running.svg b/overrides/.icons/vscode/vm-running.svg new file mode 100644 index 0000000..d4a0716 --- /dev/null +++ b/overrides/.icons/vscode/vm-running.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm-small.svg b/overrides/.icons/vscode/vm-small.svg new file mode 100644 index 0000000..334bc87 --- /dev/null +++ b/overrides/.icons/vscode/vm-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vm.svg b/overrides/.icons/vscode/vm.svg new file mode 100644 index 0000000..1230e67 --- /dev/null +++ b/overrides/.icons/vscode/vm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vr.svg b/overrides/.icons/vscode/vr.svg new file mode 100644 index 0000000..2184807 --- /dev/null +++ b/overrides/.icons/vscode/vr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vscode-insiders.svg b/overrides/.icons/vscode/vscode-insiders.svg new file mode 100644 index 0000000..570d720 --- /dev/null +++ b/overrides/.icons/vscode/vscode-insiders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/vscode.svg b/overrides/.icons/vscode/vscode.svg new file mode 100644 index 0000000..5d0463a --- /dev/null +++ b/overrides/.icons/vscode/vscode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/wand.svg b/overrides/.icons/vscode/wand.svg new file mode 100644 index 0000000..26715c8 --- /dev/null +++ b/overrides/.icons/vscode/wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/warning.svg b/overrides/.icons/vscode/warning.svg new file mode 100644 index 0000000..104147b --- /dev/null +++ b/overrides/.icons/vscode/warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/watch.svg b/overrides/.icons/vscode/watch.svg new file mode 100644 index 0000000..d573c17 --- /dev/null +++ b/overrides/.icons/vscode/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/whitespace.svg b/overrides/.icons/vscode/whitespace.svg new file mode 100644 index 0000000..345ce3a --- /dev/null +++ b/overrides/.icons/vscode/whitespace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/whole-word.svg b/overrides/.icons/vscode/whole-word.svg new file mode 100644 index 0000000..7baf83d --- /dev/null +++ b/overrides/.icons/vscode/whole-word.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/window-active.svg b/overrides/.icons/vscode/window-active.svg new file mode 100644 index 0000000..a08a469 --- /dev/null +++ b/overrides/.icons/vscode/window-active.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/window.svg b/overrides/.icons/vscode/window.svg new file mode 100644 index 0000000..0e5201d --- /dev/null +++ b/overrides/.icons/vscode/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/word-wrap.svg b/overrides/.icons/vscode/word-wrap.svg new file mode 100644 index 0000000..149b7bd --- /dev/null +++ b/overrides/.icons/vscode/word-wrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/workspace-trusted.svg b/overrides/.icons/vscode/workspace-trusted.svg new file mode 100644 index 0000000..8b4e5f5 --- /dev/null +++ b/overrides/.icons/vscode/workspace-trusted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/workspace-unknown.svg b/overrides/.icons/vscode/workspace-unknown.svg new file mode 100644 index 0000000..47d10f1 --- /dev/null +++ b/overrides/.icons/vscode/workspace-unknown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/workspace-untrusted.svg b/overrides/.icons/vscode/workspace-untrusted.svg new file mode 100644 index 0000000..1807cc7 --- /dev/null +++ b/overrides/.icons/vscode/workspace-untrusted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/worktree-small.svg b/overrides/.icons/vscode/worktree-small.svg new file mode 100644 index 0000000..586b9d3 --- /dev/null +++ b/overrides/.icons/vscode/worktree-small.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/worktree.svg b/overrides/.icons/vscode/worktree.svg new file mode 100644 index 0000000..db4c390 --- /dev/null +++ b/overrides/.icons/vscode/worktree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/zoom-in.svg b/overrides/.icons/vscode/zoom-in.svg new file mode 100644 index 0000000..4b0c39f --- /dev/null +++ b/overrides/.icons/vscode/zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/overrides/.icons/vscode/zoom-out.svg b/overrides/.icons/vscode/zoom-out.svg new file mode 100644 index 0000000..5ba7bd0 --- /dev/null +++ b/overrides/.icons/vscode/zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/snippets/abbr.md b/snippets/abbr.md new file mode 100644 index 0000000..8dbbffb --- /dev/null +++ b/snippets/abbr.md @@ -0,0 +1,6 @@ +*[RAG]: Retrieval-Augmented Generation + +*[W3C]: World Wide Web Consortium + +*[HTML]: Hyper Text Markup Language + diff --git a/snippets/coming_soon.md b/snippets/coming_soon.md new file mode 100644 index 0000000..1b01240 --- /dev/null +++ b/snippets/coming_soon.md @@ -0,0 +1,3 @@ +!!! example "Здесь пока пусто" + Скоро здесь появится полезная информация. + Мы работаем над этим. diff --git a/snippets/config_file_path.md b/snippets/config_file_path.md new file mode 100644 index 0000000..32282ff --- /dev/null +++ b/snippets/config_file_path.md @@ -0,0 +1,4 @@ +Расположение файла конфигурации: + +- :fontawesome-brands-windows: Windows: `%USERPROFILE%/.koda/config.yaml` +- :simple-linux: Linux / :simple-apple: MacOS: `$HOME/.koda/config.yaml`