remove smooth scroll plugin fully

This commit is contained in:
RingOfStorms (Josh) 2024-05-08 00:08:22 -05:00
parent d321204457
commit 436a25fb0e
3 changed files with 1 additions and 20 deletions

View file

@ -62,6 +62,7 @@ rm -rf ~/.local/state/nvim
## NOTES/TODOS
- See what linters/formaters to add or are the LSP's enough?
- CSPELL/spelling linter
FUTURE

View file

@ -12,10 +12,6 @@
url = "github:chrisgrieser/nvim-early-retirement";
flake = false;
};
"nvim_plugin-declancm/cinnamon.nvim" = {
url = "github:declancm/cinnamon.nvim";
flake = false;
};
};
outputs =
{ self, nixpkgs, ... }@inputs:

View file

@ -1,16 +0,0 @@
return {
-- Smooth scrolling
"declancm/cinnamon.nvim",
event = "VeryLazy",
opts = {
default_keymaps = true,
extra_keymaps = true,
extended_keymaps = true,
max_length = 180,
default_delay = 2,
hide_cursor = true,
},
config = function(_, opts)
require("cinnamon").setup(opts)
end,
}