notes/mind-nvim: delete

This commit is contained in:
Snoweuph 2026-05-09 22:39:19 +02:00
commit c2a79c4388
No known key found for this signature in database
GPG key ID: BEFC41DA223CEC55
8 changed files with 15 additions and 61 deletions

View file

@ -3,7 +3,6 @@
./obsidian
./orgmode
./neorg
./mind-nvim
./todo-comments
];
}

View file

@ -1,33 +0,0 @@
{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
inherit (lib.nvim.binds) pushDownDefault;
cfg = config.vim.notes.mind-nvim;
in {
config = mkIf cfg.enable {
vim = {
startPlugins = [
"mind-nvim"
];
maps.normal = {
"<leader>om" = {action = ":MindOpenMain<CR>";};
"<leader>op" = {action = ":MindOpenProject<CR>";};
"<leader>oc" = {action = ":MindClose<CR>";};
};
binds.whichKey.register = pushDownDefault {
"<leader>o" = "+Notes";
};
pluginRC.mind-nvim = entryAnywhere ''
require'mind'.setup()
'';
};
};
}

View file

@ -1,6 +0,0 @@
{
imports = [
./mind-nvim.nix
./config.nix
];
}

View file

@ -1,7 +0,0 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.notes.mind-nvim = {
enable = mkEnableOption "note organizer tool for Neovim [mind-nvim]";
};
}