From ae9a94bf4a19938ac6d7f7da8863c72eac603f59 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 18 Jul 2022 15:02:52 +0200 Subject: [PATCH] feat(neovide): run fullscreen and with multigrid effects --- home-manager/neovim/default.nix | 1 + home-manager/zsh.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/home-manager/neovim/default.nix b/home-manager/neovim/default.nix index ae81ec3..0c73ccc 100644 --- a/home-manager/neovim/default.nix +++ b/home-manager/neovim/default.nix @@ -76,6 +76,7 @@ vim.o.guifont = "DejaVu Sans Mono:h8" if vim.g.neovide then + vim.g.neovide_fullscreen = true vim.g.neovide_cursor_animation_length = 0.01 vim.g.neovide_cursor_trail_length = 0.01 end diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index 435fefb..f9274d1 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -13,6 +13,7 @@ shellAliases = { ls = "exa --group-directories-first --git"; + neovide = "neovide --multigrid"; }; }; }