summaryrefslogtreecommitdiff
path: root/modules/home/nvim.nix
blob: f715f75df104177b6efaab4f00a6e6d084919cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }: {
  programs.neovim = {
    enable = true;
    defaultEditor = true;
    viAlias = true;
    vimAlias = true;

    plugins = with pkgs.vimPlugins; [
      nvim-treesitter.withAllGrammars
    ];
  };
}