Move obsidian config

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-07-27 10:09:09 +01:00
parent e6c9c177fb
commit 4c04dda643
24 changed files with 18 additions and 18 deletions

View File

@@ -74,7 +74,7 @@ in
communityPlugins = [
{
pkg = import ./plugins/better-word-count { inherit pkgs; };
pkg = import ./config/plugins/better-word-count { inherit pkgs; };
options = {
statusBar = [
{
@@ -98,7 +98,7 @@ in
};
}
{
pkg = import ./plugins/custom-sort { inherit pkgs; };
pkg = import ./config/plugins/custom-sort { inherit pkgs; };
options = {
suspended = false;
statusBarEntryEnabled = false;
@@ -109,7 +109,7 @@ in
};
}
{
pkg = import ./plugins/dataview { inherit pkgs; };
pkg = import ./config/plugins/dataview { inherit pkgs; };
options = {
enableDataviewJs = true;
enableInlineDataviewJs = true;
@@ -119,7 +119,7 @@ in
};
}
{
pkg = import ./plugins/excalidraw { inherit pkgs; };
pkg = import ./config/plugins/excalidraw { inherit pkgs; };
options = {
folder = "Inbox";
templateFilePath = "Templates";
@@ -142,14 +142,14 @@ in
};
}
{
pkg = import ./plugins/folder-note { inherit pkgs; };
pkg = import ./config/plugins/folder-note { inherit pkgs; };
options = {
folderNoteHide = false;
folderNoteStrInit = "";
};
}
{
pkg = import ./plugins/kanban { inherit pkgs; };
pkg = import ./config/plugins/kanban { inherit pkgs; };
options = {
move-tags = true;
move-dates = true;
@@ -163,7 +163,7 @@ in
};
}
{
pkg = import ./plugins/languagetool { inherit pkgs; };
pkg = import ./config/plugins/languagetool { inherit pkgs; };
options = {
shouldAutoCheck = true;
pickyMode = true;
@@ -172,7 +172,7 @@ in
};
}
{
pkg = import ./plugins/linter { inherit pkgs; };
pkg = import ./config/plugins/linter { inherit pkgs; };
options = {
lintOnSave = true;
displayChanged = false;
@@ -317,7 +317,7 @@ in
};
}
{
pkg = import ./plugins/map-view { inherit pkgs; };
pkg = import ./config/plugins/map-view { inherit pkgs; };
options = {
"markerIconRules" = [
{
@@ -403,20 +403,20 @@ in
};
}
{
pkg = import ./plugins/minimal-settings { inherit pkgs; };
pkg = import ./config/plugins/minimal-settings { inherit pkgs; };
options = {
editorFont = "var(--font-monospace)";
};
}
{
pkg = import ./plugins/outliner { inherit pkgs; };
pkg = import ./config/plugins/outliner { inherit pkgs; };
options = {
styleLists = false;
stickCursor = "never";
};
}
{
pkg = import ./plugins/read-it-later { inherit pkgs; };
pkg = import ./config/plugins/read-it-later { inherit pkgs; };
options = {
inboxDir = "Inbox";
assetsDir = "Inbox/assets";
@@ -502,9 +502,9 @@ in
textSnippetNote = "%content%";
};
}
(import ./plugins/style-settings { inherit pkgs; })
(import ./config/plugins/style-settings { inherit pkgs; })
{
pkg = import ./plugins/tasks { inherit pkgs; };
pkg = import ./config/plugins/tasks { inherit pkgs; };
options = {
globalQuery = "short mode";
globalFilter = "#todo";
@@ -651,16 +651,16 @@ in
};
}
{
pkg = import ./plugins/url-into-selection { inherit pkgs; };
pkg = import ./config/plugins/url-into-selection { inherit pkgs; };
options = {
nothingSelected = 2;
};
}
];
cssSnippets = [ ./snippets/file-explorer-separators.css ];
cssSnippets = [ ./config/snippets/file-explorer-separators.css ];
themes = [ (import ./themes/minimal { inherit pkgs; }) ];
themes = [ (import ./config/themes/minimal { inherit pkgs; }) ];
hotkeys = {
"command-palette:open" = [ { key = "F1"; } ];

View File

@@ -95,6 +95,6 @@ in
};
};
home.file."${hmConfig.xdg.userDirs.documents}/Obsidian/.stignore".source = ../common/user/configs/gui/obsidian/.stignore;
home.file."${hmConfig.xdg.userDirs.documents}/Obsidian/.stignore".source = ../common/user/configs/gui/obsidian/config/.stignore;
};
}