1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-02-22 08:38:00 +00:00

[neovim] Add mini.animate plugin

This commit is contained in:
Daniel Carrillo 2025-02-02 12:05:55 +01:00
parent c6f899c9ac
commit b40fa30e54
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
3 changed files with 4 additions and 1 deletions

View File

@ -88,6 +88,7 @@ require("lazy").setup({
-- Plugins
{ "nvim-lua/plenary.nvim", lazy = true },
{ "echasnovski/mini.starter", lazy = "VimEnter", version = "*" },
{ "echasnovski/mini.animate", version = "*" },
{ "windwp/nvim-autopairs" },
{ "numToStr/Comment.nvim" },
{ "JoosepAlviste/nvim-ts-context-commentstring" },

View File

@ -32,8 +32,9 @@ vim.opt.shiftwidth = 4
vim.opt.tabstop = 4
vim.opt.signcolumn = "yes"
vim.opt.wrap = false
vim.opt.scrolloff = 8
vim.opt.scrolloff = 4
vim.opt.sidescrolloff = 8
vim.opt.smoothscroll = true
vim.opt.guifont = "monospace:h10"
vim.opt.shortmess:append("c")
vim.opt.whichwrap:append("<,>,[,],h,l")

View File

@ -0,0 +1 @@
require("mini.animate").setup()