nvim config

This commit is contained in:
Florian Schmitt 2023-12-29 22:43:20 +03:00
parent abd6a4cead
commit 56d110a6a2
3 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,3 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blo}b/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here

View file

@ -1,3 +1,5 @@
-- 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
vim.opt.scrolloff = 8;

View file

@ -21,4 +21,12 @@ return {
colorscheme = "rose-pine",
},
}
-- NeoScroll plugin
-- {
-- "karb94/neoscroll.nvim",
-- config = function ()
-- require('neoscroll').setup {}
-- end
-- }
}