mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
feat: expanded all lists
This commit is contained in:
parent
bb0b55b011
commit
4d8d534088
20 changed files with 107 additions and 28 deletions
|
@ -17,8 +17,19 @@ let
|
|||
);
|
||||
|
||||
modules =
|
||||
moduleImport modulesPath (name: builtins.replaceStrings [".nix"] [""] name)
|
||||
// moduleImport miscPath (name: "misc-${builtins.replaceStrings [".nix"] [""] name}")
|
||||
moduleImport modulesPath (name:
|
||||
builtins.replaceStrings [
|
||||
".nix"
|
||||
] [
|
||||
""
|
||||
]
|
||||
name)
|
||||
// moduleImport miscPath (name: "misc-${builtins.replaceStrings [
|
||||
".nix"
|
||||
] [
|
||||
""
|
||||
]
|
||||
name}")
|
||||
// (path:
|
||||
builtins.listToAttrs (
|
||||
map
|
||||
|
|
|
@ -167,7 +167,9 @@ in {
|
|||
name = "${instances.syncthing.label} (${instances.synology.label})";
|
||||
url = "http://${synology.ip.address0}:${toString instances.syncthing.ports.port0}";
|
||||
tags =
|
||||
["synology"]
|
||||
[
|
||||
"synology"
|
||||
]
|
||||
++ syncthingTags;
|
||||
keyword = instances.syncthing.label;
|
||||
}
|
||||
|
@ -175,7 +177,9 @@ in {
|
|||
name = "${instances.syncthing.label} (Desktop)";
|
||||
url = "http://localhost:${toString instances.syncthing.ports.port0}";
|
||||
tags =
|
||||
["desktop"]
|
||||
[
|
||||
"desktop"
|
||||
]
|
||||
++ syncthingTags;
|
||||
keyword = instances.syncthing.label;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
let
|
||||
discordTags = ["disboard" "discord" "dis" "ds" "social"];
|
||||
youtubeTags = ["youtube" "you" "tube" "yt"];
|
||||
discordTags = [
|
||||
"disboard"
|
||||
"discord"
|
||||
"dis"
|
||||
"ds"
|
||||
"social"
|
||||
];
|
||||
youtubeTags = [
|
||||
"youtube"
|
||||
"you"
|
||||
"tube"
|
||||
"yt"
|
||||
];
|
||||
in {
|
||||
name = "Social Media";
|
||||
toolbar = false;
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"Spankbang" = {
|
||||
definedAliases = ["@sb"];
|
||||
definedAliases = [
|
||||
"@sb"
|
||||
];
|
||||
icon = ./icons/sb.png;
|
||||
urls = [
|
||||
{template = "https://spankbang.com/s/{searchTerms}/";}
|
||||
|
|
|
@ -12,7 +12,9 @@
|
|||
}
|
||||
{
|
||||
auto-format = true;
|
||||
language-servers = ["elm-language-server"];
|
||||
language-servers = [
|
||||
"elm-language-server"
|
||||
];
|
||||
name = "elm";
|
||||
}
|
||||
{
|
||||
|
|
|
@ -32,7 +32,12 @@
|
|||
in {
|
||||
add_newline = false;
|
||||
character = let
|
||||
makeChar = bg: c: surround (makeColor bg) ("[" + c + "](" + makeStyle (makeColor bg) (makeColor colors.crust) + ")");
|
||||
makeChar = bg: c:
|
||||
surround (makeColor bg) ("["
|
||||
+ c
|
||||
+ "]("
|
||||
+ makeStyle (makeColor bg) (makeColor colors.crust)
|
||||
+ ")");
|
||||
in {
|
||||
error_symbol = makeChar colors.maroon "⊥";
|
||||
format = "$symbol";
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
{
|
||||
keymap.manager.prepend_keymap = [
|
||||
{
|
||||
on = ["Q"];
|
||||
on = [
|
||||
"Q"
|
||||
];
|
||||
run = "quit";
|
||||
}
|
||||
{
|
||||
on = ["q"];
|
||||
on = [
|
||||
"q"
|
||||
];
|
||||
run = "quit --no-cwd-file";
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue