From 107a257642ea72221d3c1c0fa98ab01605a6a5e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Wed, 18 Feb 2026 11:24:19 +0100 Subject: [PATCH] Disabled smear-cursor. it is nice but too irritating --- lua/plugins.lua | 73 +++++++++++++++++++++++++------------------------ 1 file changed, 37 insertions(+), 36 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 6aa7381..ebce091 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -507,42 +507,43 @@ require("lazy").setup({ }, - { - 'sphamba/smear-cursor.nvim', - opts = { - -- cursor_color = "#ff4000", - cursor_color = "#8b0000", - stiffness = 1, - trailing_stiffness = 1, - trailing_exponent = 0, - matrix_pixel_threshold = 1, - damping = 0.9, - gradient_exponent = 0, - gamma = 1, - never_draw_over_target = true, -- if you want to actually see under the cursor - hide_target_hack = true, -- same - legacy_computing_symbols_support = true, - - -- Only smear cursor when moving at least these distances - -- value of 2 inhibits smear while typing - min_horizontal_distance_smear = 2, - min_vertical_distance_smear = 2, - - smear_insert_mode = false, - - -- particles configuration - particles_enabled = true, - particle_spread = 1, - particles_per_second = 200, - particles_per_length = 50, - particle_max_lifetime = 800, - particle_max_initial_velocity = 20, - particle_velocity_from_cursor = 0.5, - particle_damping = 0.15, - particle_gravity = 50, - min_distance_emit_particles = 0, - }, - }, + -- 2026-02-18 nice plugin, but still more irritating than helpful + -- { + -- 'sphamba/smear-cursor.nvim', + -- opts = { + -- -- cursor_color = "#ff4000", + -- cursor_color = "#8b0000", + -- stiffness = 1, + -- trailing_stiffness = 1, + -- trailing_exponent = 0, + -- matrix_pixel_threshold = 1, + -- damping = 0.9, + -- gradient_exponent = 0, + -- gamma = 1, + -- never_draw_over_target = true, -- if you want to actually see under the cursor + -- hide_target_hack = true, -- same + -- legacy_computing_symbols_support = true, + -- + -- -- Only smear cursor when moving at least these distances + -- -- value of 2 inhibits smear while typing + -- min_horizontal_distance_smear = 2, + -- min_vertical_distance_smear = 2, + -- + -- smear_insert_mode = false, + -- + -- -- particles configuration + -- particles_enabled = true, + -- particle_spread = 1, + -- particles_per_second = 200, + -- particles_per_length = 50, + -- particle_max_lifetime = 800, + -- particle_max_initial_velocity = 20, + -- particle_velocity_from_cursor = 0.5, + -- particle_damping = 0.15, + -- particle_gravity = 50, + -- min_distance_emit_particles = 0, + -- }, + -- }, { "A7Lavinraj/fyler.nvim",