Add neovide alias without using multigrid (for noice)

This commit is contained in:
Evie Litherland-Smith 2023-05-12 08:38:50 +01:00
parent 172d094b56
commit 58ed61d485
3 changed files with 5 additions and 6 deletions

6
home/env/bash.nix vendored
View file

@ -4,11 +4,9 @@
programs.bash = {
enable = true;
shellAliases = {
nr = "sudo nixos-rebuild";
hm = "home-manager";
lg = "lazygit";
nv = "neovide --multigrid --maximized";
xnv = "WINIT_UNIX_BACKEND=x11 neovide --multigrid --maximized";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
};
};
programs.keychain.enableBashIntegration = true;

1
home/env/fish.nix vendored
View file

@ -6,6 +6,7 @@
shellAbbrs = {
lg = "lazygit";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
};
};
programs.keychain.enableFishIntegration = true;

4
home/env/zsh.nix vendored
View file

@ -6,8 +6,8 @@
shellAliases = {
ll = "ls -l";
lg = "lazygit";
nv = "neovide --multigrid --maximized";
xnv = "WINIT_UNIX_BACKEND=x11 neovide --multigrid --maximized";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
};
history = {
size = 10000;