My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/modules/base/fish/core/config.nix

31 lines
903 B

{ pkgs, ... }:
with pkgs;
with builtins;
''
set fish_function_path ${fish-foreign-env}/share/fish-foreign-env/functions $fish_function_path
${readFile ./functions/__fancy_history.fish }
${readFile ./config.fish }
${readFile ./alias.fish }
${readFile ./functions/fish_prompt.fish }
${readFile ./functions/fish_right_prompt.fish }
${readFile ./functions/fish_user_key_bindings.fish }
${readFile ./functions/gen-shell.fish }
${readFile ./functions/__history_previous_command_arguments.fish }
${readFile ./functions/__history_previous_command.fish }
${readFile ./functions/__kakoune.fish }
${readFile ./functions/e.fish }
${readFile ./functions/k.fish }
${readFile ./functions/nrepl.fish }
${readFile ./functions/nxs.fish }
${readFile ./functions/restart.fish }
${readFile ./functions/rvm.fish }
${readFile ./functions/search.fish }
${readFile ./functions/__skim_cd.fish }
${readFile ./binds.fish}
''