mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-12-26 13:21:45 +00:00
isolate smooth scroll plugin to customs
This commit is contained in:
parent
2c810036ff
commit
b0ce1f2c0b
27
lua/custom/plugins/neoscroll.lua
Normal file
27
lua/custom/plugins/neoscroll.lua
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
-- Smooth scroll plugin and keymaps
|
||||||
|
return {
|
||||||
|
'karb94/neoscroll.nvim',
|
||||||
|
config = function()
|
||||||
|
require('neoscroll').setup {
|
||||||
|
hide_cursor = false,
|
||||||
|
easing_function = nil,
|
||||||
|
respect_scrolloff = true,
|
||||||
|
}
|
||||||
|
|
||||||
|
require('neoscroll.config').set_mappings {
|
||||||
|
-- Scroll normally
|
||||||
|
['<C-u>'] = { 'scroll', { '-vim.wo.scroll', 'true', '50' } },
|
||||||
|
['<C-d>'] = { 'scroll', { 'vim.wo.scroll', 'true', '50' } },
|
||||||
|
-- Scroll entire page height
|
||||||
|
['<C-b>'] = { 'scroll', { '-vim.api.nvim_win_get_height(0)', 'true', '80' } },
|
||||||
|
['<C-f>'] = { 'scroll', { 'vim.api.nvim_win_get_height(0)', 'true', '80' } },
|
||||||
|
-- Scroll 10% at a time
|
||||||
|
['<C-y>'] = { 'scroll', { '-0.10', 'false', '25' } },
|
||||||
|
['<C-e>'] = { 'scroll', { '0.10', 'false', '25' } },
|
||||||
|
-- Jump to top, bottom and center
|
||||||
|
['zt'] = { 'zt', { '40' } },
|
||||||
|
['zz'] = { 'zz', { '50' } },
|
||||||
|
['zb'] = { 'zb', { '40' } },
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
}
|
@ -22,34 +22,6 @@ require('lazy').setup({
|
|||||||
-- Processing-Java
|
-- Processing-Java
|
||||||
'sophacles/vim-processing',
|
'sophacles/vim-processing',
|
||||||
|
|
||||||
-- Smooth scroll plugin and keymaps
|
|
||||||
{
|
|
||||||
'karb94/neoscroll.nvim',
|
|
||||||
config = function()
|
|
||||||
require('neoscroll').setup {
|
|
||||||
hide_cursor = false,
|
|
||||||
easing_function = nil,
|
|
||||||
respect_scrolloff = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
require('neoscroll.config').set_mappings {
|
|
||||||
-- Scroll normally
|
|
||||||
['<C-u>'] = { 'scroll', { '-vim.wo.scroll', 'true', '50' } },
|
|
||||||
['<C-d>'] = { 'scroll', { 'vim.wo.scroll', 'true', '50' } },
|
|
||||||
-- Scroll entire page height
|
|
||||||
['<C-b>'] = { 'scroll', { '-vim.api.nvim_win_get_height(0)', 'true', '80' } },
|
|
||||||
['<C-f>'] = { 'scroll', { 'vim.api.nvim_win_get_height(0)', 'true', '80' } },
|
|
||||||
-- Scroll 10% at a time
|
|
||||||
['<C-y>'] = { 'scroll', { '-0.10', 'false', '25' } },
|
|
||||||
['<C-e>'] = { 'scroll', { '0.10', 'false', '25' } },
|
|
||||||
-- Jump to top, bottom and center
|
|
||||||
['zt'] = { 'zt', { '40' } },
|
|
||||||
['zz'] = { 'zz', { '50' } },
|
|
||||||
['zb'] = { 'zb', { '40' } },
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
||||||
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user