25 lines
478 B
Nix
25 lines
478 B
Nix
{pkgs, ...}: let
|
|
theme = "Catppuccin";
|
|
font = "JetBrainsMono Nerd Font=32;Noto Color Emoji=34";
|
|
in {
|
|
extraPackages = with pkgs; [
|
|
silicon
|
|
jetbrains-mono
|
|
noto-fonts-color-emoji
|
|
];
|
|
|
|
extraPlugins = let
|
|
builds = import ../builds.nix pkgs;
|
|
in
|
|
with builds; [silicon];
|
|
|
|
extraConfigLua = ''
|
|
require 'nvim-silicon'.setup {
|
|
font = '${font}',
|
|
theme = '${theme}',
|
|
no_line_number = true,
|
|
no_window_controls = true,
|
|
}
|
|
'';
|
|
}
|