blob: 6e340fe0b53e560ea39a9623a192d7422d0d8341 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ config, ... }:
{
programs.iamb.settings = {
default_profile = "personal";
macros.normal = {
"<C-h>" = "gT";
"<C-l>" = "gt";
};
profiles.personal.user_id = "@rosa:girlonthe.net";
settings = {
image_preview.protocol.type = "sixel";
notifications = {
enabled = true;
via = "bell";
};
sort.rooms = [
"favorite"
"unread"
"recent"
"name"
];
username_display = "displayname";
};
};
}
|