nvim/lua/config/options.lua

9 lines
343 B
Lua
Raw Normal View History

2023-03-08 13:06:56 -05:00
-- 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
2023-03-14 13:29:39 -04:00
vim.opt.relativenumber = false
vim.opt.conceallevel = 0
2023-03-14 14:30:37 -04:00
vim.opt.completeopt = { "menuone", "noselect" }
vim.opt.timeoutlen = 1000