Disable animations, remove deprecated dep

This commit is contained in:
KaasKop
2025-01-30 20:51:40 +01:00
parent 573246011c
commit 179265e3c1
2 changed files with 1 additions and 13 deletions

View File

@@ -8,3 +8,4 @@ local opt = vim.opt
opt.mouse = "a"
opt.termguicolors = true
vim.g.snacks_animate = false

View File

@@ -1,13 +0,0 @@
return {
"telescope.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
build = "make",
config = function()
require("telescope").load_extension("fzf")
end,
cond = function()
return vim.fn.executable("make") == 1
end,
},
}