Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
1985312383 committed Jan 9, 2024
0 parents commit 1e464c1
Show file tree
Hide file tree
Showing 60 changed files with 150,913 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
64 changes: 64 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
23 changes: 23 additions & 0 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
share: true
path: file.md #given as an example path
links:
mdlinks: false
convert: true
internals: true
nonShared: false
embed:
send: false
remove: keep
char: ->
attachment:
send: true
folder:
dataview: true
hardBreak: false
repo:
owner: 1985312383
repo: RecmmondSystemNotes
branch: main
autoclean: false
copylink:
base: https://RecmmondSystemNotes.github.io/RecmmondSystemNotes
Binary file added .obsidian/.DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions .obsidian/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"promptDelete": false,
"trashOption": "local",
"newLinkFormat": "relative",
"showUnsupportedFiles": false,
"useMarkdownLinks": true,
"attachmentFolderPath": "./assets",
"alwaysUpdateLinks": true
}
7 changes: 7 additions & 0 deletions .obsidian/appearance.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"accentColor": "",
"theme": "moonstone",
"cssTheme": "Blue Topaz",
"monospaceFontFamily": "Consolas",
"interfaceFontFamily": ""
}
8 changes: 8 additions & 0 deletions .obsidian/community-plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
"obsidian-excalidraw-plugin",
"dataview",
"obsidian-style-settings",
"cm-editor-syntax-highlight-obsidian",
"obsidian-minimal-settings",
"obsidian-git"
]
31 changes: 31 additions & 0 deletions .obsidian/core-plugins-migration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"outgoing-link": false,
"tag-pane": true,
"page-preview": true,
"daily-notes": false,
"templates": false,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"starred": false,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false,
"canvas": true,
"properties": false,
"bookmarks": true
}
17 changes: 17 additions & 0 deletions .obsidian/core-plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"tag-pane",
"page-preview",
"note-composer",
"command-palette",
"editor-status",
"bookmarks",
"outline",
"word-count",
"file-recovery"
]
5 changes: 5 additions & 0 deletions .obsidian/global-search.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"showFullPath": false,
"linkStyle": "none",
"listStyle": "none"
}
22 changes: 22 additions & 0 deletions .obsidian/graph.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 0.647625858269744,
"close": false
}
51 changes: 51 additions & 0 deletions .obsidian/hotkeys.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"app:go-back": [
{
"modifiers": [
"Mod"
],
"key": "["
}
],
"app:go-forward": [
{
"modifiers": [
"Mod"
],
"key": "]"
}
],
"obsidian-emoji-toolbar:emoji-picker:open-picker": [
{
"modifiers": [
"Ctrl"
],
"key": "E"
}
],
"templater-obsidian:insert-templater": [
{
"modifiers": [
"Ctrl"
],
"key": "T"
}
],
"obsidian-excalidraw-plugin:Downloaded/Convert selected text elements to sticky notes": [
{
"modifiers": [
"Alt"
],
"key": "S"
}
],
"graph:open": [],
"app:toggle-left-sidebar": [
{
"modifiers": [
"Ctrl"
],
"key": "L"
}
]
}
3 changes: 3 additions & 0 deletions .obsidian/page-preview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"preview": true
}
Binary file added .obsidian/plugins/.DS_Store
Binary file not shown.
Loading

0 comments on commit 1e464c1

Please sign in to comment.