From 04b284df7e0d7097c48a43e0990bf81c72f6c7cb Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 22 Jul 2025 23:16:57 -0500 Subject: [PATCH] home/common | rm jot, add obsidian.nvim --- home/common/default.nix | 1 - home/common/nixvim.nix | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/home/common/default.nix b/home/common/default.nix index 33f9961..95c185e 100644 --- a/home/common/default.nix +++ b/home/common/default.nix @@ -55,7 +55,6 @@ iftop immich-cli iw - jot jq keychain keyutils diff --git a/home/common/nixvim.nix b/home/common/nixvim.nix index 936d0d6..e981d47 100644 --- a/home/common/nixvim.nix +++ b/home/common/nixvim.nix @@ -4,6 +4,10 @@ nixvim = { globals.mapleader = " "; keymaps = [ + { + key = "t"; + action = ":Telescope buffers"; + } { key = "e"; action = ":Neotree"; @@ -58,6 +62,25 @@ none-ls.enable = true; nvim-autopairs.enable = true; nvim-tree.enable = true; + obsidian = { + enable = true; + settings = { + daily_notes = { + date_format = "%Y-%m-%d"; + folder = "Daily"; + }; + workspaces = [ + { + name = "main"; + path = "~/.obsidian/main"; + } + { + name = "journal"; + path = "~/.obsidian/journal"; + } + ]; + }; + }; project-nvim.enable = true; telescope.enable = true; web-devicons.enable = true;