Yazi: Remove unused Init.
This commit is contained in:
parent
4cdc075a84
commit
eb44d049d6
|
@ -39,7 +39,6 @@ in
|
||||||
".config/tmux/tmux.conf".source = tmux.config;
|
".config/tmux/tmux.conf".source = tmux.config;
|
||||||
".config/waybar/config".source = waybar.config;
|
".config/waybar/config".source = waybar.config;
|
||||||
".config/waybar/style.css".source = waybar.style;
|
".config/waybar/style.css".source = waybar.style;
|
||||||
".config/yazi/init.lua".source = yazi.init;
|
|
||||||
".config/yazi/keymap.toml".source = yazi.keymap;
|
".config/yazi/keymap.toml".source = yazi.keymap;
|
||||||
".config/yazi/theme.toml".source = yazi.theme;
|
".config/yazi/theme.toml".source = yazi.theme;
|
||||||
".config/yazi/yazi.toml".source = yazi.yazi;
|
".config/yazi/yazi.toml".source = yazi.yazi;
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
...
|
...
|
||||||
}@args:
|
}@args:
|
||||||
{
|
{
|
||||||
init = (import ./module/Init.nix args).file;
|
|
||||||
keymap = (import ./module/Keymap.nix args).file;
|
keymap = (import ./module/Keymap.nix args).file;
|
||||||
theme = (import ./module/Theme.nix args).file;
|
theme = (import ./module/Theme.nix args).file;
|
||||||
yazi = (import ./module/Yazi.nix args).file;
|
yazi = (import ./module/Yazi.nix args).file;
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
file = pkgs.writeText "YaziInitConfig" ''
|
|
||||||
-- Hide Status Bar.
|
|
||||||
-- function Status:render() return {} end
|
|
||||||
-- local old_manager_render = Manager.render
|
|
||||||
-- function Manager:render(area)
|
|
||||||
-- return old_manager_render(self, ui.Rect { x = area.x, y = area.y, w = area.w, h = area.h + 1 })
|
|
||||||
-- end
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in a new issue