0%

Obsidian 美化、插件等设置记录

分析自己的口味:讨厌渐变,讨厌注意力范围外的自动进程


Plugins

基础功能拓展:

  • Better Footnote
  • Better Word Count
  • Calendar
  • Dataview
  • Templater

便利输入:

  • Auto Link Title
  • Remember cursor position
  • Tag Wrangler

中文支持:

  • Word Splitting for Simplified Chinese in Edit Mode
  • Obsidian Pangu

隐私:

  • Privacy Glasses



CSS Snippets

参考:github awesome-obsidian

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* 两端对齐 */
/* Hyphenation and Justification */
/* author: https://forum.obsidian.md/u/boyd/summary */
.cm-s-obsidian,
.markdown-preview-view {
text-align: justify;
hyphens: auto;
}

/* 文件夹名突出显示 */
.nav-folder-title {
font-weight: 500;
}
.theme-dark .nav-folder-title {
color: #ffffff;
}
.theme-light .nav-folder-title {
color: #000000;
}

/* 文件夹显示参考线 */
/* 参考:Outliner For The Outline and File Explorer */
.outline .tree-item-children {
margin-left: 20px;
border-left: 1px solid var(--background-modifier-border);
border-radius: 4px;
}
.nav-folder-children .nav-folder-children {
margin-left: 20px;
padding-left: 0;
border-left: 1px solid var(--background-modifier-border);
border-radius: 4px;
}

/* 文件夹显示自定义图标 */
/* 参考:Custom Icons for Specific Folders */
.nav-folder-title-content::before {
margin-right: 0.25em;
}
div[data-path="文件夹名"] .nav-folder-title-content::before {
content: "📂";
}



Themes

参考:github awesome-obsidian