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 = { programs.bash = {
enable = true; enable = true;
shellAliases = { shellAliases = {
nr = "sudo nixos-rebuild";
hm = "home-manager";
lg = "lazygit"; lg = "lazygit";
nv = "neovide --multigrid --maximized"; hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
xnv = "WINIT_UNIX_BACKEND=x11 neovide --multigrid --maximized"; neovide = "WINIT_UNIX_BACKEND=x11 neovide";
}; };
}; };
programs.keychain.enableBashIntegration = true; programs.keychain.enableBashIntegration = true;

1
home/env/fish.nix vendored
View file

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

4
home/env/zsh.nix vendored
View file

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