vault backup: 2025-01-16 21:59:26
This commit is contained in:
parent
4ced15da02
commit
34202ea9f1
12 changed files with 630369 additions and 2 deletions
File diff suppressed because one or more lines are too long
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
|
@ -3,6 +3,6 @@
|
||||||
"obsidian-git",
|
"obsidian-git",
|
||||||
"obsidian-linter",
|
"obsidian-linter",
|
||||||
"editing-toolbar",
|
"editing-toolbar",
|
||||||
"copilot",
|
"obsidian-auto-link-title",
|
||||||
"obsidian-auto-link-title"
|
"github-copilot"
|
||||||
]
|
]
|
1091
.obsidian/plugins/github-copilot/copilot-1.0.11/agent.cjs
vendored
Normal file
1091
.obsidian/plugins/github-copilot/copilot-1.0.11/agent.cjs
vendored
Normal file
File diff suppressed because one or more lines are too long
100256
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/cl100k_base.tiktoken
vendored
Normal file
100256
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/cl100k_base.tiktoken
vendored
Normal file
File diff suppressed because it is too large
Load diff
100256
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/cl100k_base.tiktoken.noindex
vendored
Normal file
100256
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/cl100k_base.tiktoken.noindex
vendored
Normal file
File diff suppressed because it is too large
Load diff
199998
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/o200k_base.tiktoken
vendored
Normal file
199998
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/o200k_base.tiktoken
vendored
Normal file
File diff suppressed because it is too large
Load diff
199998
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/o200k_base.tiktoken.noindex
vendored
Normal file
199998
.obsidian/plugins/github-copilot/copilot-1.0.11/resources/o200k_base.tiktoken.noindex
vendored
Normal file
File diff suppressed because it is too large
Load diff
22
.obsidian/plugins/github-copilot/data.json
vendored
Normal file
22
.obsidian/plugins/github-copilot/data.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"nodePath": "/usr/bin/node",
|
||||||
|
"enabled": true,
|
||||||
|
"hotkeys": {
|
||||||
|
"accept": "Tab",
|
||||||
|
"cancel": "Escape",
|
||||||
|
"request": "Cmd-Shift-/",
|
||||||
|
"partial": "Cmd-Shift-.",
|
||||||
|
"next": "Cmd-Shift-ArrowDown",
|
||||||
|
"disable": "Cmd-Shift-ArrowRight"
|
||||||
|
},
|
||||||
|
"suggestionDelay": 500,
|
||||||
|
"debug": false,
|
||||||
|
"onlyOnHotkey": false,
|
||||||
|
"onlyInCodeBlock": false,
|
||||||
|
"exclude": [],
|
||||||
|
"deviceSpecificSettings": [
|
||||||
|
"nodePath"
|
||||||
|
],
|
||||||
|
"useDeviceSpecificSettings": false,
|
||||||
|
"proxy": ""
|
||||||
|
}
|
28626
.obsidian/plugins/github-copilot/main.js
vendored
Normal file
28626
.obsidian/plugins/github-copilot/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/github-copilot/manifest.json
vendored
Normal file
10
.obsidian/plugins/github-copilot/manifest.json
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"id": "github-copilot",
|
||||||
|
"name": "Github Copilot",
|
||||||
|
"version": "1.0.11",
|
||||||
|
"minAppVersion": "1.5.12",
|
||||||
|
"description": "Implement suggestions from Github Copilot directly in your editor.",
|
||||||
|
"author": "Vasseur Pierre-Adrien",
|
||||||
|
"authorUrl": "https://github.com/Pierrad",
|
||||||
|
"isDesktopOnly": true
|
||||||
|
}
|
107
.obsidian/plugins/github-copilot/styles.css
vendored
Normal file
107
.obsidian/plugins/github-copilot/styles.css
vendored
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
.copilot-status-bar-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
& svg {
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.copilot-status-bar-loading-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
animation: spin 1s linear infinite;
|
||||||
|
@keyframes spin {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-inline-suggestion {
|
||||||
|
opacity: 0.4;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-inline-suggestion-box {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1000;
|
||||||
|
background: var(--background-primary);
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: 0 0 0 1px var(--background-modifier-border);
|
||||||
|
padding: 0.3rem 0.5rem;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: var(--text-primary);
|
||||||
|
min-width: 50px;
|
||||||
|
max-width: 70px;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-modal-auth-box {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-note {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
color: var(--text-muted);
|
||||||
|
padding-top: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-hotkeys-container {
|
||||||
|
padding: 0.75em 0;
|
||||||
|
border-top: 1px solid var(--background-modifier-border);
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-hotkeys-container .setting-item {
|
||||||
|
border-top: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-save-button {
|
||||||
|
width: fit-content;
|
||||||
|
align-self: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-item-control {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-suggestion-container {
|
||||||
|
top: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-suggestion-item:hover {
|
||||||
|
background: var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-suggestion-item-active {
|
||||||
|
background: var(--background-modifier-border);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-exclude-item {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copilot-settings-exclude-item-remove {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
|
@ -5,6 +5,8 @@ date: 2025-01-16
|
||||||
---
|
---
|
||||||
[Configuration](https://quartz.jzhao.xyz/configuration) options that are configurable via environment variable.
|
[Configuration](https://quartz.jzhao.xyz/configuration) options that are configurable via environment variable.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|**Variable**|**Default**|**Purpose**|
|
|**Variable**|**Default**|**Purpose**|
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
|`NGINX_PORT`|`8080`|Port on which the NGINX server runs|
|
|`NGINX_PORT`|`8080`|Port on which the NGINX server runs|
|
||||||
|
|
Loading…
Reference in a new issue