Add neovide alias without using multigrid (for noice)
This commit is contained in:
parent
172d094b56
commit
58ed61d485
6
home/env/bash.nix
vendored
6
home/env/bash.nix
vendored
|
@ -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
1
home/env/fish.nix
vendored
|
@ -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
4
home/env/zsh.nix
vendored
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue