Compare commits
No commits in common. "7472b94108d61f6fb4c99a97e2885a4614762779" and "a11717c8ceaf6b3121f6f53ef0d00a47f8522d29" have entirely different histories.
7472b94108
...
a11717c8ce
2 changed files with 3 additions and 4 deletions
|
@ -31,7 +31,7 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAbbrs = shellConfig.abbreviations;
|
shellAbbrs = shellConfig.abbreviations;
|
||||||
shellAliases = shellConfig.aliases;
|
shellAliases = shellConfig.aliases;
|
||||||
shellInit = /* fish */ ''
|
shellInit = ''
|
||||||
# Vi Mode
|
# Vi Mode
|
||||||
fish_vi_key_bindings
|
fish_vi_key_bindings
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ in
|
||||||
end
|
end
|
||||||
abbr --add dotdot --regex '^\.\.+$' --function multicd
|
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
|
function editor_edit
|
||||||
echo $EDITOR $argv
|
echo $EDITOR $argv
|
||||||
|
|
|
@ -39,7 +39,7 @@ in
|
||||||
};
|
};
|
||||||
optimise.enable = mkEnableOption "nix-optimise";
|
optimise.enable = mkEnableOption "nix-optimise";
|
||||||
useSuper = mkEnableOption "use nix super";
|
useSuper = mkEnableOption "use nix super";
|
||||||
useNom = mkEnableOption "use nix output monitor";
|
useNom = mkEnableOption "use nix output monitor" // { default = true; };
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
@ -85,7 +85,6 @@ in
|
||||||
stable.flake = inputs.stable;
|
stable.flake = inputs.stable;
|
||||||
dotfiles.flake = self;
|
dotfiles.flake = self;
|
||||||
default.flake = self;
|
default.flake = self;
|
||||||
d.flake = self;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue