Compare commits

...

3 commits

Author SHA1 Message Date
b331079ee4
Some vim stuff 2025-01-26 18:28:51 +01:00
6e0e5dcba2
Cleanup niri 2025-01-26 17:17:11 +01:00
f1d41e1130
Migrate to new config 2025-01-26 17:15:49 +01:00
8 changed files with 54 additions and 38 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
/.yolk_git /.yolk_git
/.deployed_cache /.deployed_cache
/.git

View file

@ -1,4 +1,4 @@
// vim:set ft=kdl: // vim:set ft=kdl shiftwidth=4 commentstring=//%s:
input { input {
keyboard { keyboard {
xkb { xkb {
@ -52,26 +52,26 @@ output "Philips Consumer Electronics Company PHL 345B1C 0x00008E7C" {
position x=0 y=0 position x=0 y=0
// {% end %} // {% end %}
} }
// {% if device.desktop %} // {% if device.desktop %}
//<yolk> output "HDMI-A-1" { //<yolk> output "HDMI-A-1" {
//<yolk> mode "2560x1440" //<yolk> mode "2560x1440"
//<yolk> scale 1 //<yolk> scale 1
//<yolk> position x=0 y=0 //<yolk> position x=0 y=0
//<yolk> } //<yolk> }
// {% elif device.thinkix %} // {% elif device.thinkix %}
//<yolk> output "HDMI-A-1" { //<yolk> output "HDMI-A-1" {
//<yolk> mode "1920x1080" //<yolk> mode "1920x1080"
//<yolk> scale 1 //<yolk> scale 1
//<yolk> position x=0 y=0 //<yolk> position x=0 y=0
//<yolk> //off //<yolk> //off
//<yolk> } //<yolk> }
//<yolk> output "eDP-1" { //<yolk> output "eDP-1" {
//<yolk> mode "1920x1080@60" //<yolk> mode "1920x1080@60"
//<yolk> scale 1.0 //<yolk> scale 1.0
//<yolk> transform "normal" //<yolk> transform "normal"
//<yolk> position x=0 y=1440 //<yolk> position x=0 y=1440
//<yolk> } //<yolk> }
// {% end %} // {% end %}
@ -127,8 +127,6 @@ screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
animations { animations {
window-movement { window-movement {
// duration-ms 200
// curve "ease-out-quad"
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001 spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
} }
horizontal-view-movement { horizontal-view-movement {
@ -136,8 +134,6 @@ animations {
} }
window-open { window-open {
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001 spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
// duration-ms 200
// curve "ease-out-quad"
custom-shader r" custom-shader r"
float map(float value, float min1, float max1, float min2, float max2) { float map(float value, float min1, float max1, float min2, float max2) {
return min2 + (value - min1) * (max2 - min2) / (max1 - min1); return min2 + (value - min1) * (max2 - min2) / (max1 - min1);
@ -146,14 +142,12 @@ animations {
float cur = niri_clamped_progress; float cur = niri_clamped_progress;
if (coords_geo.x > cur) { return vec4(0.0); } 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); 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 { window-close {
spring damping-ratio=1.0 stiffness=800 epsilon=0.0001 spring damping-ratio=1.0 stiffness=800 epsilon=0.0001
// duration-ms 200
// curve "ease-out-quad"
custom-shader r" custom-shader r"
float map(float value, float min1, float max1, float min2, float max2) { float map(float value, float min1, float max1, float min2, float max2) {
return min2 + (value - min1) * (max2 - min2) / (max1 - min1); return min2 + (value - min1) * (max2 - min2) / (max1 - min1);
@ -182,12 +176,14 @@ window-rule {
match app-id=r#"1Password"# match app-id=r#"1Password"#
match title=r#"[gG]mail"# match title=r#"[gG]mail"#
match title=r#".*[Ww]hats[aA]pp.*$"# match title=r#".*[Ww]hats[aA]pp.*$"#
match title=r#".*Ente Photos.*"#
block-out-from "screen-capture" block-out-from "screen-capture"
} }
window-rule { window-rule {
match app-id=r#"^1Password$"# match app-id=r#"^1Password$"#
open-floating true open-floating true
} }
window-rule { window-rule {
match title=r#"Picture-in-Picture"# match title=r#"Picture-in-Picture"#
max-width 300 max-width 300
@ -203,16 +199,18 @@ window-rule {
window-rule { window-rule {
match title=r#"^.* is sharing your screen.$"#; 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 { window-rule {
shadow {
on
spread 0
softness 20
// offset x=1 y=-1
}
clip-to-geometry true clip-to-geometry true
geometry-corner-radius 8 geometry-corner-radius 8
} }

View file

@ -25,10 +25,13 @@
"mason-lspconfig.nvim": { "branch": "main", "commit": "97d9f1d3ad205dece6bcafd1d71cf1507608f3c7" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "97d9f1d3ad205dece6bcafd1d71cf1507608f3c7" },
"mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
"mini.ai": { "branch": "main", "commit": "ebb04799794a7f94628153991e6334c3304961b8" }, "mini.ai": { "branch": "main", "commit": "ebb04799794a7f94628153991e6334c3304961b8" },
"mini.animate": { "branch": "main", "commit": "d14190ac3040116540889e2ebc25f488b195799e" },
"mini.comment": { "branch": "main", "commit": "a56581c40c19fa26f2b39da72504398de3173c5a" }, "mini.comment": { "branch": "main", "commit": "a56581c40c19fa26f2b39da72504398de3173c5a" },
"mini.hipatterns": { "branch": "main", "commit": "f34975103a38b3f608219a1324cdfc58ea660b8b" },
"mini.icons": { "branch": "main", "commit": "1c79feb7478ca773fa3dac5cadf43ced9180e861" }, "mini.icons": { "branch": "main", "commit": "1c79feb7478ca773fa3dac5cadf43ced9180e861" },
"mini.move": { "branch": "main", "commit": "4caa1c212f5ca3d1633d21cfb184808090ed74b1" }, "mini.move": { "branch": "main", "commit": "4caa1c212f5ca3d1633d21cfb184808090ed74b1" },
"mini.pairs": { "branch": "main", "commit": "e543c760edc5e746e5b6cbd02c066c17ead3ef16" }, "mini.pairs": { "branch": "main", "commit": "e543c760edc5e746e5b6cbd02c066c17ead3ef16" },
"mini.surround": { "branch": "main", "commit": "aa5e245829dd12d8ff0c96ef11da28681d6049aa" },
"neo-tree.nvim": { "branch": "main", "commit": "0774fa2085c62a147fcc7b56f0ac37053cc80217" }, "neo-tree.nvim": { "branch": "main", "commit": "0774fa2085c62a147fcc7b56f0ac37053cc80217" },
"noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" }, "noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" },
"nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" }, "nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" },

View file

@ -3,11 +3,13 @@
"lazyvim.plugins.extras.ai.copilot", "lazyvim.plugins.extras.ai.copilot",
"lazyvim.plugins.extras.ai.copilot-chat", "lazyvim.plugins.extras.ai.copilot-chat",
"lazyvim.plugins.extras.coding.mini-comment", "lazyvim.plugins.extras.coding.mini-comment",
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.editor.telescope", "lazyvim.plugins.extras.editor.telescope",
"lazyvim.plugins.extras.lang.json", "lazyvim.plugins.extras.lang.json",
"lazyvim.plugins.extras.lang.markdown", "lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.rust", "lazyvim.plugins.extras.lang.rust",
"lazyvim.plugins.extras.lang.toml" "lazyvim.plugins.extras.lang.toml",
"lazyvim.plugins.extras.util.mini-hipatterns"
], ],
"news": { "news": {
"NEWS.md": "10960" "NEWS.md": "10960"

View file

@ -26,7 +26,7 @@ return {
enabled = false, enabled = false,
}, },
scroll = { scroll = {
enabled = false, enabled = true,
}, },
lazygit = { lazygit = {
enabled = false, enabled = false,

View file

@ -1,4 +1,14 @@
return { return {
{
"nvim-treesitter/nvim-treesitter",
version = false,
build = ":TSUpdate",
---@type TSConfig
---@diagnostic disable-next-line: missing-fields
opts = {
}
},
{ {
"nvim-treesitter/playground", "nvim-treesitter/playground",
cmd = { "TSPlaygroundToggle", "TSHighlightCapturesUnderCursor" }, cmd = { "TSPlaygroundToggle", "TSHighlightCapturesUnderCursor" },

View file

@ -89,6 +89,8 @@
"panel.background": "#282828", "panel.background": "#282828",
"tab_bar.background": "#282828", "tab_bar.background": "#282828",
"border": "#3c3836" // "border": "#3c3836",
"border": "#282828",
"title_bar.background": "#1d2021"
} }
} }

View file

@ -22,7 +22,7 @@ export let eggs = #{
"eww-bar": merge_into_home(device.linux && device.desktop, []), "eww-bar": merge_into_home(device.linux && device.desktop, []),
"foot": #{ enabled: device.linux, targets: "~/.config/foot", templates: ["foot.ini"] }, "foot": #{ enabled: device.linux, targets: "~/.config/foot", templates: ["foot.ini"] },
"git": merge_into_home(true, [".gitconfig"]), "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" }, "nvim": #{ strategy: "put", targets: "~/.config/nvim", main_file: "init.lua" },
"profile": #{ enabled: device.linux, strategy: "merge", targets: "~" }, "profile": #{ enabled: device.linux, strategy: "merge", targets: "~" },
"starship": merge_into_home(true, []), "starship": merge_into_home(true, []),