vault backup: 2025-01-16 21:59:26

This commit is contained in:
Nathan Price 2025-01-16 21:59:26 -05:00
parent 4ced15da02
commit 34202ea9f1
Signed by: gravityfargo
SSH key fingerprint: SHA256:bjq+uA1U+9bFMd70q2wdNtwaYxGv84IBXalnYvZDKmg
12 changed files with 630369 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -3,6 +3,6 @@
"obsidian-git",
"obsidian-linter",
"editing-toolbar",
"copilot",
"obsidian-auto-link-title"
"obsidian-auto-link-title",
"github-copilot"
]

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View 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

File diff suppressed because one or more lines are too long

View 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
}

View 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;
}

View file

@ -5,6 +5,8 @@ date: 2025-01-16
---
[Configuration](https://quartz.jzhao.xyz/configuration) options that are configurable via environment variable.
|**Variable**|**Default**|**Purpose**|
|---|---|---|
|`NGINX_PORT`|`8080`|Port on which the NGINX server runs|