diff --git a/modules/home-manager/accounts/email/default.nix b/modules/home-manager/accounts/email/default.nix index 31ae461..13717e1 100644 --- a/modules/home-manager/accounts/email/default.nix +++ b/modules/home-manager/accounts/email/default.nix @@ -227,5 +227,6 @@ in programs.msmtp = { enable = true; }; + home.file."${config.xdg.configHome}/urlscan/config.json".source = ./files/urlscan.config.json; }; } diff --git a/modules/home-manager/accounts/email/files/urlscan.config.json b/modules/home-manager/accounts/email/files/urlscan.config.json new file mode 100644 index 0000000..961c5ce --- /dev/null +++ b/modules/home-manager/accounts/email/files/urlscan.config.json @@ -0,0 +1,54 @@ +{ + "palettes": { + "default": [ + [ "header", "white", "dark blue", "standout", "#d8d8d8", "#383838" ], + [ "footer", "white", "dark red", "standout", "#d8d8d8", "#383838" ], + [ "search", "white", "dark green", "standout", "#282828", "#f7ca88" ], + [ "msgtext", "", "", "", "", "" ], + [ "msgtext:ellipses", "light gray", "black", "bold", "#f7ca88", "#383838" ], + [ "urlref:number:braces", "light gray", "black", "bold", "#f8f8f8", "#383838"], + [ "urlref:number","yellow", "black","bold", "#f7ca88", "#383838" ], + [ "urlref:url", "white", "black", "italics", "#7cafc2", "#181818" ], + [ "url:sel", "white", "dark blue", "underline", "#7cafc2", "#383838" ] + ] + + }, + "keys": { + "/": "search_key", + "0": "digits", + "1": "digits", + "2": "digits", + "3": "digits", + "4": "digits", + "5": "digits", + "6": "digits", + "7": "digits", + "8": "digits", + "9": "digits", + "a": "add_url", + "C": "clipboard", + "c": "context", + "ctrl l": "clear_screen", + "ctrl f": "page_down", + "ctrl b": "page_up", + "d": "del_url", + "f1": "help_menu", + "G": "bottom", + "g": "top", + "j": "down", + "k": "up", + "J": "next", + "K": "previous", + "P": "clipboard_pri", + "l": "link_handler", + "o": "open_queue", + "O": "open_queue_win", + "p": "palette", + "Q": "quit", + "q": "quit", + "R": "reverse", + "S": "all_shorten", + "s": "shorten", + "u": "all_escape" + } +}