Add options to set font sizes (#60)
Fixes #35 and #59 Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com>
This commit is contained in:
parent
9afac8a0a3
commit
50dcc46fe6
14 changed files with 71 additions and 20 deletions
|
|
@ -24,13 +24,15 @@ let
|
|||
'';
|
||||
};
|
||||
|
||||
vimOptions = {
|
||||
vimOptions = let
|
||||
fonts = config.stylix.fonts;
|
||||
in {
|
||||
plugins = [ themePlugin ];
|
||||
extraConfig = ''
|
||||
set termguicolors
|
||||
colorscheme base16-stylix
|
||||
unlet g:colors_name
|
||||
set guifont=${escape [" "] config.stylix.fonts.monospace.name}:h10
|
||||
set guifont=${escape [" "] fonts.monospace.name}:h${toString fonts.sizes.terminal}
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue