From 0e877e028ef13a5262b7253c7aabc6671bbe7873 Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Mon, 13 Jun 2022 13:32:15 +0100 Subject: [PATCH] Set GUI font for Vim/NeoVim :sparkles: --- modules/vim.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/vim.nix b/modules/vim.nix index 4762b179..fb31aecb 100644 --- a/modules/vim.nix +++ b/modules/vim.nix @@ -24,7 +24,10 @@ let vimOptions = { plugins = [ themePlugin ]; - extraConfig = "colorscheme base16-stylix"; + extraConfig = '' + colorscheme base16-stylix + set guifont=${escape [" "] config.stylix.fonts.monospace.name}:h10 + ''; }; in {