summaryrefslogtreecommitdiffstats
path: root/lua/conf/plugins/smear.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/conf/plugins/smear.lua')
-rw-r--r--lua/conf/plugins/smear.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/lua/conf/plugins/smear.lua b/lua/conf/plugins/smear.lua
deleted file mode 100644
index 4e0e051..0000000
--- a/lua/conf/plugins/smear.lua
+++ /dev/null
@@ -1,13 +0,0 @@
--- yea it's a bit flashy, but it's genuenly useful to be able to tell where my
--- cursor has gone
-return { 'sphamba/smear-cursor.nvim',
- disable = vim.version.lt(vim.version(), { 0, 10, 2 }) or vim.g.neovide_version,
- function()
- require('smear_cursor').setup {
- stiffness = 0.8, -- 0.6 [0, 1]
- trailing_stiffness = 0.5, -- 0.3 [0, 1]
- distance_stop_animating = 0.5, -- 0.1 > 0
- hide_target_hack = false -- true boolean
- }
- end
-}