Move NvimTree file explorer to left side
- Change side from 'right' to 'left' in nvim-tree.lua - Update edgy.nvim config to place NvimTree in left panel
This commit is contained in:
33
lua/cargdev/plugins/mini-animate.lua
Normal file
33
lua/cargdev/plugins/mini-animate.lua
Normal file
@@ -0,0 +1,33 @@
|
||||
return {
|
||||
"echasnovski/mini.animate",
|
||||
event = "VeryLazy",
|
||||
opts = function()
|
||||
local animate = require("mini.animate")
|
||||
return {
|
||||
cursor = {
|
||||
enable = true,
|
||||
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
|
||||
},
|
||||
scroll = {
|
||||
enable = true,
|
||||
timing = animate.gen_timing.linear({ duration = 100, unit = "total" }),
|
||||
},
|
||||
resize = {
|
||||
enable = true,
|
||||
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
|
||||
},
|
||||
open = {
|
||||
enable = true,
|
||||
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
|
||||
winconfig = animate.gen_winconfig.wipe({ direction = "from_edge" }),
|
||||
winblend = animate.gen_winblend.linear({ from = 80, to = 100 }),
|
||||
},
|
||||
close = {
|
||||
enable = true,
|
||||
timing = animate.gen_timing.linear({ duration = 80, unit = "total" }),
|
||||
winconfig = animate.gen_winconfig.wipe({ direction = "to_edge" }),
|
||||
winblend = animate.gen_winblend.linear({ from = 100, to = 80 }),
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user