add scrolloff and ZenMode basics
This commit is contained in:
parent
3d8f1c0508
commit
2da8bb32c7
3
init.lua
3
init.lua
|
@ -224,6 +224,9 @@ vim.o.updatetime = 250
|
|||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
|
||||
-- Set Scrolloff
|
||||
vim.o.scrolloff = 8
|
||||
|
||||
-- Set completeopt to have a better completion experience
|
||||
vim.o.completeopt = 'menuone,noselect'
|
||||
|
||||
|
|
|
@ -2,4 +2,6 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
"folke/zen-mode.nvim",
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue