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

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

    extraLuaConfig = builtins.readFile ./global_config.lua;
  };
}