update config
parent
269bfc8f97
commit
0e09282890
|
@ -16,5 +16,15 @@ local function map(mode, lhs, rhs, opts)
|
|||
end
|
||||
end
|
||||
|
||||
map("n", "<C-u>", "<C-u>zz", { desc = "Centered Half Page Up", remap = true })
|
||||
map("n", "<C-d>", "<C-d>zz", { desc = "Centered Half Page Down", remap = true })
|
||||
map(
|
||||
"n",
|
||||
"<C-u>",
|
||||
"<Cmd>lua vim.cmd('normal! <C-u>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
{ desc = "Centered Half Page Up", remap = true }
|
||||
)
|
||||
map(
|
||||
"n",
|
||||
"<C-d>",
|
||||
"<Cmd>lua vim.cmd('normal! <C-d>'); MiniAnimate.execute_after('scroll', 'normal! zz')<CR>",
|
||||
{ desc = "Centered Half Page Down", remap = true }
|
||||
)
|
||||
|
|
|
@ -10,6 +10,9 @@ return {
|
|||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"nyoom-engineering/oxocarbon.nvim",
|
||||
},
|
||||
|
||||
-- Configure LazyVim to load rose-pine
|
||||
{
|
||||
|
|
|
@ -15,6 +15,11 @@ return {
|
|||
group = "module",
|
||||
},
|
||||
},
|
||||
cargo = {
|
||||
buildScripts = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
files = {
|
||||
excludeDirs = {
|
||||
"pe-template",
|
||||
|
|
Loading…
Reference in New Issue