Files
nixos-config/modules/home-manager/nixvim/plugins/default.nix
T
2025-07-06 22:46:23 +02:00

20 lines
305 B
Nix

{ pkgs, ... }: {
imports = [
./treesitter.nix
./lualine.nix
./nvim-autopairs.nix
./which-key.nix
];
programs.nixvim = {
plugins = {
lz-n.enable = true;
indent-blankline.enable = true;
};
extraPlugins = with pkgs.vimPlugins; [
vim-sleuth
];
};
}