This commit is contained in:
Hadi
2024-06-27 18:32:17 +02:00
parent cd7b35389e
commit ae6818ed65
3 changed files with 39 additions and 35 deletions

View File

@@ -2,8 +2,15 @@
programs.nixvim.plugins.obsidian = {
enable = config.var.obsidian;
settings = {
dir = "~/nextcloud/Notes";
completion = {
min_chars = 2;
nvim_cmp = true;
};
disable_frontmatter = true;
workspaces = [{
name = "note";
path = "~/nextcloud/Notes";
}];
};
};
}

View File

@@ -2,6 +2,8 @@
home.packages = with pkgs; [ bat ripgrep tldr ];
home.sessionPath = [ "$HOME/go/bin" ];
programs.zsh = {
enable = true;
enableCompletion = true;
@@ -27,10 +29,6 @@
size = 1000000;
};
home.sessionPath = [
"$HOME/go/bin"
];
profileExtra = lib.optionalString (config.home.sessionPath != [ ]) ''
export PATH="$PATH''${PATH:+:}${
lib.concatStringsSep ":" config.home.sessionPath