summaryrefslogtreecommitdiffstats
path: root/neovim.nix
blob: 6bab47aaa0bbff6b04c255758a08b60ae5558a21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  config,
  lib,
  pkgs,
  inputs,
  ...
}: {
	home.file.".config/nvim".source = config.lib.file.mkOutOfStoreSymlink "/home/andrew/.dotfiles/astronvim-config";
  programs.ripgrep.enable = true;
  programs.lazygit.enable = true;
  programs.bottom.enable = true;

  # home.persistence."/persist${config.home.homeDirectory}" = {
  #   directories = [
  #     ".local/share/nvim"
  #     ".local/state/nvim"
  #     ".cache/nvim"
  #   ];
  # };

	programs.neovim = {
		enable = true;
		withPython3 = true;
		withNodeJs = true;
		defaultEditor = true;
	};
}