aboutsummaryrefslogtreecommitdiff
path: root/common/nvim-flake.nix
blob: daed404aa448f3b20f85841b2b0e1b301a33bffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{inputs, ...}: { 

  imports = [ inputs.neovim-flake.homeManagerModules.default ];
  # enable programs
  programs = {
    neovim-flake = {
      enable = true;
      settings = {
        vim.languages = {
	        nix.enable = true;
          nix.lsp.enable = true;
	        ts.enable = true;
	        python.enable = true;
	        html.enable = true;
        };
        vim.lsp = {
          enable = true;
        };
      };
    };
    # ... add more programs as you see fit
  };
}