Files
nixos-config/modules/home-manager/nixvim/plugins/default.nix
T
2025-07-08 18:34:30 +02:00

26 lines
401 B
Nix

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