summaryrefslogtreecommitdiffstats
path: root/obsidian.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-30 14:02:16 -0400
committerAndrew <admonty1@protonmail.com>2025-08-30 14:02:16 -0400
commit4bfb5b88c31af4d668816926be20184ffa8607c5 (patch)
tree788c47cd5bafdf035e51cc35bd9bc293ece042f3 /obsidian.nix
parenttmux and neovim config (diff)
downloadnixos-4bfb5b88c31af4d668816926be20184ffa8607c5.tar.gz
nixos-4bfb5b88c31af4d668816926be20184ffa8607c5.tar.bz2
nixos-4bfb5b88c31af4d668816926be20184ffa8607c5.zip
change some stuff in neovim config
Diffstat (limited to '')
-rw-r--r--obsidian.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/obsidian.nix b/obsidian.nix
index 1c55a90..7124fe8 100644
--- a/obsidian.nix
+++ b/obsidian.nix
@@ -1,5 +1,8 @@
-{ config, pkgs, ... }:
{
+ config,
+ pkgs,
+ ...
+}: {
programs.obsidian = {
enable = true;
defaultSettings = {
@@ -7,10 +10,9 @@
showLineNumber = true;
vimMode = true;
};
- cssSnippets = [
- ./zoom.css
- ];
-
+ # cssSnippets = [
+ # ./zoom.css
+ # ];
};
vaults."Vault" = {
enable = true;
@@ -18,5 +20,4 @@
};
};
};
-
}