blob: a088f9e1205c2742e874966c8f5d5c7e57ac3a66 [file] [log] [blame]
Skyler Greya7feb6e2022-08-26 06:51:55 +01001{pkgs, ...}: {
2 programs.neovim = {
3 plugins = with pkgs.vimPlugins; [onehalf nvim-hlslens pkgs.nvim-scrollbar];
Skyler Grey5768ea42022-09-04 12:52:39 +01004 extraConfig =
5 builtins.readFile ./theme.vim
6 + ''
7 source ${./scrollbar.lua}
8 '';
Skyler Greya7feb6e2022-08-26 06:51:55 +01009 };
10}