Basic settings for Rio Terminal
0
rio-settings.nix
1{
2 cursor = {
3 shape = "beam";
4 blinking = true;
5 };
6 fonts = {
7 size = 17.5;
8 family = "M+1Code Nerd Font";
9 symbol-map = [
10 {
11 start = "1FB00";
12 end = "1FBFF";
13 font-family = "Adwaita Mono";
14 }
15 {
16 start = "2190";
17 end = "21FF";
18 font-family = "Adwaita Mono";
19 }
20 ];
21 };
22 margin = [20];
23 theme = "catppuccin-mocha-peach";
24}