mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-26 06:02:23 +00:00
Move stuff around
This commit is contained in:
parent
6c63915971
commit
458ab723eb
70 changed files with 34 additions and 43 deletions
|
@ -1 +0,0 @@
|
||||||
.config/foot/foot.ini
|
|
|
@ -7,8 +7,7 @@
|
||||||
helper = store
|
helper = store
|
||||||
[core]
|
[core]
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
; {# if io::command_available("deltar") #}
|
||||||
; {# if io::command_available("delta") #}
|
|
||||||
;<yolk> pager = delta
|
;<yolk> pager = delta
|
||||||
|
|
||||||
[pull]
|
[pull]
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
.gitconfig
|
|
|
@ -1 +0,0 @@
|
||||||
.config/niri/config.kdl
|
|
|
@ -68,7 +68,7 @@
|
||||||
"alt-j": "editor::SelectAllMatches",
|
"alt-j": "editor::SelectAllMatches",
|
||||||
// lsp
|
// lsp
|
||||||
"space m f": "editor::Format",
|
"space m f": "editor::Format",
|
||||||
"space m /": "project_symbols::Toggle",
|
"space m s": "project_symbols::Toggle",
|
||||||
"space m g": "editor::GoToDefinition",
|
"space m g": "editor::GoToDefinition",
|
||||||
"space m d": "editor::Hover",
|
"space m d": "editor::Hover",
|
||||||
"space m n": "editor::Rename",
|
"space m n": "editor::Rename",
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
"space m E": "editor::GoToPrevDiagnostic",
|
"space m E": "editor::GoToPrevDiagnostic",
|
||||||
"space m v": "editor::ToggleCodeActions",
|
"space m v": "editor::ToggleCodeActions",
|
||||||
"space m o": "outline::Toggle",
|
"space m o": "outline::Toggle",
|
||||||
"space m s": "editor::ShowSignatureHelp",
|
"space m h": "editor::ShowSignatureHelp",
|
||||||
// diagnostics
|
// diagnostics
|
||||||
"space e e": "diagnostics::Deploy",
|
"space e e": "diagnostics::Deploy",
|
||||||
"space e w": "diagnostics::ToggleWarnings",
|
"space e w": "diagnostics::ToggleWarnings",
|
||||||
|
|
63
yolk.rhai
63
yolk.rhai
|
@ -1,43 +1,38 @@
|
||||||
const themes = #{
|
|
||||||
gruv: "a",
|
|
||||||
nord: "b",
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
export const device = #{
|
export const device = #{
|
||||||
thinkix: SYSTEM.hostname == "thinkix",
|
thinkix: SYSTEM.hostname == "thinkix",
|
||||||
desktop: SYSTEM.hostname == "fedora.fritz.box",
|
desktop: SYSTEM.hostname == "fedora.fritz.box",
|
||||||
laptop: SYSTEM.hostname == "thinkix" || SYSTEM.hostname == "frissnix",
|
laptop: SYSTEM.hostname == "thinkix" || SYSTEM.hostname == "frissnix",
|
||||||
gruv: if LOCAL { themes.gruv } else { themes.nord }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export let eggs = #{};
|
export let eggs = #{
|
||||||
eggs["alacritty"] = #{ enabled: true, targets: "~" };
|
"alacritty": #{ enabled: true, targets: "~" },
|
||||||
eggs["eww"] = #{ enabled: true, targets: "~" };
|
"eww": #{ enabled: true, targets: "~" },
|
||||||
eggs["eww-bar"] = #{ enabled: true, targets: "~" };
|
"eww-bar": #{ enabled: true, targets: "~" },
|
||||||
eggs["foot"] = #{ enabled: true, targets: "~", templates: [".config/foot/foot.ini"] };
|
"foot": #{ enabled: true, targets: "~", templates: [".config/foot/foot.ini"] },
|
||||||
eggs["git"] = #{ enabled: true, targets: "~", templates: [".gitconfig"] };
|
"git": #{ enabled: true, targets: "~", templates: [".gitconfig"] },
|
||||||
eggs["niri"] = #{ enabled: true, targets: "~", templates: [".config/niri/*"] };
|
"niri": #{ enabled: true, targets: "~/.config/niri", templates: ["**/*.kdl"] },
|
||||||
eggs["nvim"] = #{ enabled: true, targets: "~" };
|
"nvim": #{ enabled: true, targets: "~" },
|
||||||
eggs["other-dotfiles-stuff"] = #{ enabled: true, targets: "~" };
|
"other-dotfiles-stuff": #{ enabled: true, targets: "~" },
|
||||||
eggs["profile"] = #{ enabled: true, targets: "~" };
|
"profile": #{ enabled: true, targets: "~" },
|
||||||
eggs["starship"] = #{ enabled: true, targets: "~" };
|
"starship": #{ enabled: true, targets: "~" },
|
||||||
eggs["sway"] = #{ enabled: true, targets: "~" };
|
"sway": #{ enabled: true, targets: "~" },
|
||||||
eggs["tmux"] = #{ enabled: true, targets: "~" };
|
"tmux": #{ enabled: !device.laptop, targets: "~" },
|
||||||
eggs["zed"] = #{ enabled: true, targets: "~" };
|
"zed": #{ enabled: true, targets: "~" },
|
||||||
eggs["zsh"] = #{ enabled: true, targets: "~" };
|
"zsh": #{ enabled: true, targets: "~" },
|
||||||
eggs["rofi"] = #{ enabled: true, targets: "~" };
|
"rofi": #{ enabled: true, targets: "~" },
|
||||||
eggs["gtk"] = #{ enabled: true, targets: "~" };
|
"gtk": #{ enabled: true, targets: "~" },
|
||||||
|
"scripts": #{ enabled: true, targets: "~/scripts" },
|
||||||
|
|
||||||
eggs["powershell"] = #{ enabled: false, targets: "~" };
|
"powershell": #{ enabled: false, targets: "~" },
|
||||||
eggs["scripts"] = #{ enabled: true, targets: "~" };
|
"sioyek": #{ enabled: false, targets: "~" },
|
||||||
eggs["sioyek"] = #{ enabled: false, targets: "~" };
|
"waybar": #{ enabled: false, targets: "~" },
|
||||||
eggs["waybar"] = #{ enabled: false, targets: "~" };
|
"zathura": #{ enabled: false, targets: "~" },
|
||||||
eggs["zathura"] = #{ enabled: false, targets: "~" };
|
"eww-laptop": #{ enabled: false, targets: "~" },
|
||||||
eggs["eww-laptop"] = #{ enabled: false, targets: "~" };
|
"hyprland": #{ enabled: false, targets: "~" },
|
||||||
eggs["hyprland"] = #{ enabled: false, targets: "~" };
|
"hyprlock": #{ enabled: false, targets: "~" },
|
||||||
eggs["hyprlock"] = #{ enabled: false, targets: "~" };
|
"kakoune": #{ enabled: false, targets: "~" },
|
||||||
eggs["kakoune"] = #{ enabled: false, targets: "~" };
|
"kanata": #{ enabled: false, targets: "~" },
|
||||||
eggs["kanata"] = #{ enabled: false, targets: "~" };
|
"karabiner": #{ enabled: false, targets: "~" },
|
||||||
eggs["karabiner"] = #{ enabled: false, targets: "~" };
|
}
|
||||||
|
|
Loading…
Reference in a new issue