update nvim config to use lazynvim
This commit is contained in:
parent
3f51767fbe
commit
867a86f153
18 changed files with 366 additions and 273 deletions
11
dot_config/nvim/lua/config/options.lua
Normal file
11
dot_config/nvim/lua/config/options.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue