blob: b8d6c578f4c064b54f407eff05ee6da2e173517a [file] [log] [blame]
Skyler Greya7feb6e2022-08-26 06:51:55 +01001# The vim modules are sorted reverse alphabetically, so any extraConfig that is
2# put in here should hopefully be the first thing to be loaded. I'm using it to
3# set stuff like my mapleader
Skyler Grey35e8c882023-01-26 00:37:03 +00004{ lib, ...}: {
5 programs.neovim.extraConfig = lib.pipe [./settings.vim ./functions.vim] [
6 (map builtins.readFile)
7 (builtins.concatStringsSep "\n")
8 ];
Skyler Greya7feb6e2022-08-26 06:51:55 +01009}