generation 523 25.11.20250714.62e0f05
This commit is contained in:
@@ -40,9 +40,17 @@
|
||||
plenary-nvim
|
||||
nvim-web-devicons
|
||||
{
|
||||
plugin = mini-animate;
|
||||
config = toLuaFile ./plugins/mini-animate.lua;
|
||||
plugin = smear-cursor-nvim;
|
||||
config = toLuaFile ./plugins/smear.lua;
|
||||
}
|
||||
# {
|
||||
# plugin = neovide;
|
||||
# config = toLuaFile ./plugins/neovide.lua;
|
||||
# }
|
||||
# { worthless plugin don't use
|
||||
# plugin = mini-animate;
|
||||
# config = toLuaFile ./plugins/mini-animate.lua;
|
||||
# }
|
||||
{
|
||||
plugin = telescope-nvim;
|
||||
config = toLuaFile ./plugins/telescope.lua;
|
||||
|
||||
@@ -1 +1,19 @@
|
||||
require('mini.animate').setup()
|
||||
-- require('mini.animate').setup()
|
||||
|
||||
-- require('mini.animate').setup({
|
||||
-- cursor = {
|
||||
-- enable = true,
|
||||
-- },
|
||||
-- scroll = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- resize = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- open = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- close = {
|
||||
-- enable = false,
|
||||
-- },
|
||||
-- })
|
||||
|
||||
0
home/programs/nvim/plugins/neovide.lua
Normal file
0
home/programs/nvim/plugins/neovide.lua
Normal file
19
home/programs/nvim/plugins/smear.lua
Normal file
19
home/programs/nvim/plugins/smear.lua
Normal file
@@ -0,0 +1,19 @@
|
||||
require('smear_cursor').setup({
|
||||
-- Main options
|
||||
stiffness = 0.6, -- [0, 1] - cursor follow speed
|
||||
trailing_stiffness = 0.45, -- [0, 1] - trail follow speed
|
||||
distance_stop_animating = 0.1, -- stop when close enough
|
||||
|
||||
-- Insert mode
|
||||
smear_insert_mode = true,
|
||||
stiffness_insert_mode = 0.5,
|
||||
trailing_stiffness_insert_mode = 0.5,
|
||||
|
||||
-- Visual tweaks
|
||||
cursor_color = "#d3cdc3", -- match your cursor color
|
||||
legacy_computing_symbols_support = false,
|
||||
|
||||
-- Optional
|
||||
smear_between_buffers = true,
|
||||
smear_between_neighbor_lines = true,
|
||||
})
|
||||
Reference in New Issue
Block a user