mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 06:13:31 +00:00
Compare commits
3 commits
49746bd334
...
b331079ee4
Author | SHA1 | Date | |
---|---|---|---|
b331079ee4 | |||
6e0e5dcba2 | |||
f1d41e1130 |
8 changed files with 54 additions and 38 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
/.yolk_git
|
||||
/.deployed_cache
|
||||
/.git
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// vim:set ft=kdl:
|
||||
// vim:set ft=kdl shiftwidth=4 commentstring=//%s:
|
||||
input {
|
||||
keyboard {
|
||||
xkb {
|
||||
|
@ -127,8 +127,6 @@ screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
|
|||
|
||||
animations {
|
||||
window-movement {
|
||||
// duration-ms 200
|
||||
// curve "ease-out-quad"
|
||||
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
|
||||
}
|
||||
horizontal-view-movement {
|
||||
|
@ -136,8 +134,6 @@ animations {
|
|||
}
|
||||
window-open {
|
||||
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
|
||||
// duration-ms 200
|
||||
// curve "ease-out-quad"
|
||||
custom-shader r"
|
||||
float map(float value, float min1, float max1, float min2, float max2) {
|
||||
return min2 + (value - min1) * (max2 - min2) / (max1 - min1);
|
||||
|
@ -146,14 +142,12 @@ animations {
|
|||
float cur = niri_clamped_progress;
|
||||
if (coords_geo.x > cur) { return vec4(0.0); }
|
||||
vec3 coord = vec3(map(coords_geo.x,0.0, cur, 0.0, 1.0 ), coords_geo.y, coords_geo.z);
|
||||
return texture2D(niri_tex, (niri_geo_to_tex * coord).st);
|
||||
return texture2d(niri_tex, (niri_geo_to_tex * coord).st);
|
||||
}
|
||||
"
|
||||
}
|
||||
window-close {
|
||||
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
|
||||
// duration-ms 200
|
||||
// curve "ease-out-quad"
|
||||
custom-shader r"
|
||||
float map(float value, float min1, float max1, float min2, float max2) {
|
||||
return min2 + (value - min1) * (max2 - min2) / (max1 - min1);
|
||||
|
@ -182,12 +176,14 @@ window-rule {
|
|||
match app-id=r#"1Password"#
|
||||
match title=r#"[gG]mail"#
|
||||
match title=r#".*[Ww]hats[aA]pp.*$"#
|
||||
match title=r#".*Ente Photos.*"#
|
||||
block-out-from "screen-capture"
|
||||
}
|
||||
window-rule {
|
||||
match app-id=r#"^1Password$"#
|
||||
open-floating true
|
||||
}
|
||||
|
||||
window-rule {
|
||||
match title=r#"Picture-in-Picture"#
|
||||
max-width 300
|
||||
|
@ -203,16 +199,18 @@ window-rule {
|
|||
|
||||
window-rule {
|
||||
match title=r#"^.* is sharing your screen.$"#;
|
||||
open-floating true
|
||||
}
|
||||
|
||||
// window-rule {
|
||||
// match is-active-in-column=false;
|
||||
// max-height 100;
|
||||
// min-height 100;
|
||||
// }
|
||||
|
||||
|
||||
window-rule {
|
||||
|
||||
shadow {
|
||||
on
|
||||
spread 0
|
||||
softness 20
|
||||
// offset x=1 y=-1
|
||||
}
|
||||
clip-to-geometry true
|
||||
geometry-corner-radius 8
|
||||
}
|
||||
|
|
|
@ -25,10 +25,13 @@
|
|||
"mason-lspconfig.nvim": { "branch": "main", "commit": "97d9f1d3ad205dece6bcafd1d71cf1507608f3c7" },
|
||||
"mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
|
||||
"mini.ai": { "branch": "main", "commit": "ebb04799794a7f94628153991e6334c3304961b8" },
|
||||
"mini.animate": { "branch": "main", "commit": "d14190ac3040116540889e2ebc25f488b195799e" },
|
||||
"mini.comment": { "branch": "main", "commit": "a56581c40c19fa26f2b39da72504398de3173c5a" },
|
||||
"mini.hipatterns": { "branch": "main", "commit": "f34975103a38b3f608219a1324cdfc58ea660b8b" },
|
||||
"mini.icons": { "branch": "main", "commit": "1c79feb7478ca773fa3dac5cadf43ced9180e861" },
|
||||
"mini.move": { "branch": "main", "commit": "4caa1c212f5ca3d1633d21cfb184808090ed74b1" },
|
||||
"mini.pairs": { "branch": "main", "commit": "e543c760edc5e746e5b6cbd02c066c17ead3ef16" },
|
||||
"mini.surround": { "branch": "main", "commit": "aa5e245829dd12d8ff0c96ef11da28681d6049aa" },
|
||||
"neo-tree.nvim": { "branch": "main", "commit": "0774fa2085c62a147fcc7b56f0ac37053cc80217" },
|
||||
"noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" },
|
||||
"nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" },
|
||||
|
|
|
@ -3,11 +3,13 @@
|
|||
"lazyvim.plugins.extras.ai.copilot",
|
||||
"lazyvim.plugins.extras.ai.copilot-chat",
|
||||
"lazyvim.plugins.extras.coding.mini-comment",
|
||||
"lazyvim.plugins.extras.coding.mini-surround",
|
||||
"lazyvim.plugins.extras.editor.telescope",
|
||||
"lazyvim.plugins.extras.lang.json",
|
||||
"lazyvim.plugins.extras.lang.markdown",
|
||||
"lazyvim.plugins.extras.lang.rust",
|
||||
"lazyvim.plugins.extras.lang.toml"
|
||||
"lazyvim.plugins.extras.lang.toml",
|
||||
"lazyvim.plugins.extras.util.mini-hipatterns"
|
||||
],
|
||||
"news": {
|
||||
"NEWS.md": "10960"
|
||||
|
|
|
@ -26,7 +26,7 @@ return {
|
|||
enabled = false,
|
||||
},
|
||||
scroll = {
|
||||
enabled = false,
|
||||
enabled = true,
|
||||
},
|
||||
lazygit = {
|
||||
enabled = false,
|
||||
|
|
|
@ -1,4 +1,14 @@
|
|||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
version = false,
|
||||
build = ":TSUpdate",
|
||||
---@type TSConfig
|
||||
---@diagnostic disable-next-line: missing-fields
|
||||
opts = {
|
||||
|
||||
}
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/playground",
|
||||
cmd = { "TSPlaygroundToggle", "TSHighlightCapturesUnderCursor" },
|
||||
|
|
|
@ -89,6 +89,8 @@
|
|||
|
||||
"panel.background": "#282828",
|
||||
"tab_bar.background": "#282828",
|
||||
"border": "#3c3836"
|
||||
// "border": "#3c3836",
|
||||
"border": "#282828",
|
||||
"title_bar.background": "#1d2021"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ export let eggs = #{
|
|||
"eww-bar": merge_into_home(device.linux && device.desktop, []),
|
||||
"foot": #{ enabled: device.linux, targets: "~/.config/foot", templates: ["foot.ini"] },
|
||||
"git": merge_into_home(true, [".gitconfig"]),
|
||||
"niri": #{ enabled: device.linux, targets: "~/.config/niri", templates: ["**/*.kdl"] },
|
||||
"niri": #{ enabled: device.linux, targets: "~/.config/niri", templates: ["**/*.kdl"], main_file: "config.kdl" },
|
||||
"nvim": #{ strategy: "put", targets: "~/.config/nvim", main_file: "init.lua" },
|
||||
"profile": #{ enabled: device.linux, strategy: "merge", targets: "~" },
|
||||
"starship": merge_into_home(true, []),
|
||||
|
|
Loading…
Add table
Reference in a new issue