Compare commits
No commits in common. "7472b94108d61f6fb4c99a97e2885a4614762779" and "a11717c8ceaf6b3121f6f53ef0d00a47f8522d29" have entirely different histories.
7472b94108
...
a11717c8ce
|
@ -31,7 +31,7 @@ in
|
|||
enable = true;
|
||||
shellAbbrs = shellConfig.abbreviations;
|
||||
shellAliases = shellConfig.aliases;
|
||||
shellInit = /* fish */ ''
|
||||
shellInit = ''
|
||||
# Vi Mode
|
||||
fish_vi_key_bindings
|
||||
|
||||
|
@ -62,7 +62,7 @@ in
|
|||
end
|
||||
abbr --add dotdot --regex '^\.\.+$' --function multicd
|
||||
|
||||
abbr -a .P --position anywhere --set-cursor "% | $PAGER"
|
||||
abbr -a P --position anywhere --set-cursor "% | $PAGER"
|
||||
|
||||
function editor_edit
|
||||
echo $EDITOR $argv
|
||||
|
|
|
@ -39,7 +39,7 @@ in
|
|||
};
|
||||
optimise.enable = mkEnableOption "nix-optimise";
|
||||
useSuper = mkEnableOption "use nix super";
|
||||
useNom = mkEnableOption "use nix output monitor";
|
||||
useNom = mkEnableOption "use nix output monitor" // { default = true; };
|
||||
};
|
||||
|
||||
config = {
|
||||
|
@ -85,7 +85,6 @@ in
|
|||
stable.flake = inputs.stable;
|
||||
dotfiles.flake = self;
|
||||
default.flake = self;
|
||||
d.flake = self;
|
||||
};
|
||||
|
||||
settings = {
|
||||
|
|
Loading…
Reference in New Issue