Compare commits

...

4 Commits

Author SHA1 Message Date
andrzej ae71e1d3f5 gitignore 2024-06-06 20:11:29 +02:00
andrzej 85f8000cfa comment out neoscroll 2024-06-06 20:08:29 +02:00
andrzej d06d3c7d64 quickfix next shortcut 2024-06-06 20:07:47 +02:00
andrzej df6acebe2a zsh update 2024-05-30 12:37:07 +02:00
4 changed files with 20 additions and 16 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
nvim/.config/lazy-lock.json

View File

@ -53,3 +53,6 @@ vim.keymap.set("n", "<M-t>", function()
vim.opt.tabstop = 8
end
end)
--QUICKFIX
vim.keymap.set({ "n" }, "<leader>q", "<cmd>cn<CR>")

View File

@ -1,17 +1,17 @@
return {
"karb94/neoscroll.nvim",
config = function()
require("neoscroll").setup({
-- All these keys will be mapped to their corresponding default scrolling animation
mappings = { "<C-u>", "<C-d>", "<C-b>", "<C-f>", "<C-y>", "<C-e>", "zt", "zz", "zb" },
hide_cursor = true, -- Hide cursor while scrolling
stop_eof = true, -- Stop at <EOF> when scrolling downwards
respect_scrolloff = false, -- Stop scrolling when the cursor reaches the scrolloff margin of the file
cursor_scrolls_alone = true, -- The cursor will keep on scrolling even if the window cannot scroll further
easing_function = nil, -- Default easing function
pre_hook = nil, -- Function to run before the scrolling animation starts
post_hook = nil, -- Function to run after the scrolling animation ends
performance_mode = false, -- Disable "Performance Mode" on all buffers.
})
end,
-- "karb94/neoscroll.nvim",
-- config = function()
-- require("neoscroll").setup({
-- -- All these keys will be mapped to their corresponding default scrolling animation
-- mappings = { "<C-u>", "<C-d>", "<C-b>", "<C-f>", "<C-y>", "<C-e>", "zt", "zz", "zb" },
-- hide_cursor = true, -- Hide cursor while scrolling
-- stop_eof = true, -- Stop at <EOF> when scrolling downwards
-- respect_scrolloff = false, -- Stop scrolling when the cursor reaches the scrolloff margin of the file
-- cursor_scrolls_alone = true, -- The cursor will keep on scrolling even if the window cannot scroll further
-- easing_function = nil, -- Default easing function
-- pre_hook = nil, -- Function to run before the scrolling animation starts
-- post_hook = nil, -- Function to run after the scrolling animation ends
-- performance_mode = false, -- Disable "Performance Mode" on all buffers.
-- })
-- end,
}

View File

@ -1 +1 @@
LAST_EPOCH=19858
LAST_EPOCH=19873