Skip to content

Commit 3c84693

Browse files
committed
nvim: kill smooth scrolling dep
Signed-off-by: clux <[email protected]>
1 parent fc0b4c8 commit 3c84693

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Diff for: config/nvim/lua/config/options.lua

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
-- Options are automatically loaded before lazy.nvim startup
22
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
33
-- Add any additional options here
4+
5+
local opt = vim.opt
6+
7+
opt.relativenumber = false
8+
opt.ignorecase = true

Diff for: config/nvim/lua/plugins/disabled.lua

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
return {
2+
{
3+
"snacks.nvim",
4+
opts = {
5+
scroll = { enabled = false },
6+
},
7+
},
8+
}

0 commit comments

Comments
 (0)