blob: 722d39e5beae6936a8fcc4c015a791a671c70bcb [file] [log] [blame]
Skyler Greya7feb6e2022-08-26 06:51:55 +01001{pkgs, ...}: {
2 programs.neovim = {
3 extraConfig =
4 builtins.readFile ./indentation.vim
5 + ''
6 source ${./indentation.lua}
7 '';
8 plugins = with pkgs.vimPlugins; [
9 vim-sleuth
10 indent-blankline-nvim
11 ];
12 };
13}