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;