Skip to content

Commit

Permalink
nvim: kill smooth scrolling dep
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Feb 7, 2025
1 parent fc0b4c8 commit 3c84693
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config/nvim/lua/config/options.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here

local opt = vim.opt

opt.relativenumber = false
opt.ignorecase = true
8 changes: 8 additions & 0 deletions config/nvim/lua/plugins/disabled.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
return {
{
"snacks.nvim",
opts = {
scroll = { enabled = false },
},
},
}

0 comments on commit 3c84693

Please sign in to comment.