blob: b8d6c578f4c064b54f407eff05ee6da2e173517a [file] [log] [blame]
# The vim modules are sorted reverse alphabetically, so any extraConfig that is
# put in here should hopefully be the first thing to be loaded. I'm using it to
# set stuff like my mapleader
{ lib, ...}: {
programs.neovim.extraConfig = lib.pipe [./settings.vim ./functions.vim] [
(map builtins.readFile)
(builtins.concatStringsSep "\n")
];
}