added more tools, replaced outline.nvim with arial.nvim.

This commit is contained in:
Gabe Venberg 2024-03-20 18:57:07 -05:00
parent 2069707238
commit 273dd88e34
5 changed files with 35 additions and 1 deletions

View file

@ -16,6 +16,14 @@
sshfs
just
espeak
fd
sd
hugo
scc
tre-command
diskonaut
hyperfine
curl
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage

View file

@ -188,7 +188,7 @@
];
};
imports = [
./outline.nix
# ./outline.nix
./rust-tools.nix
];
}

View file

@ -18,5 +18,6 @@
extraPlugins = [
pkgs.vimPlugins.outline-nvim
];
extraConfigLua=''require("outline").setup({})'';
};
}

View file

@ -0,0 +1,23 @@
{
configs,
pkgs,
...
}: {
programs.nixvim = {
keymaps = [
{
action = ":AerialToggle!<CR>";
key = "<leader>o";
mode = "n";
options = {
silent = true;
desc = "toggle outline";
};
}
];
extraPlugins = [
pkgs.vimPlugins.aerial-nvim
];
extraConfigLua=''require("aerial").setup({})'';
};
}

View file

@ -15,8 +15,10 @@
extraPlugins = [
pkgs.vimPlugins.treesj
];
extraConfigLua=''require("treesj").setup({})'';
};
imports = [
./rainbow-delimiters.nix
./arial.nix
];
}