update nvim config to use lazynvim

This commit is contained in:
liv 2024-02-26 13:39:06 +01:00
parent 3f51767fbe
commit 867a86f153
18 changed files with 366 additions and 273 deletions

View file

@ -0,0 +1,11 @@
-- 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 her
-- Disable relative line numbers
vim.o.relativenumber = false
if vim.g.neovide then
-- Reduce neovide scroll animation length
vim.g.neovide_scroll_animation_length = 0.1
end