aboutsummaryrefslogtreecommitdiff
path: root/lua/opts.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2022-10-13 23:52:54 +0200
committersrdusr <trevorgray@srdusr.com>2022-10-13 23:52:54 +0200
commit86628d459cabd0c29f0cdbb699e2e18807b958ed (patch)
tree512801524e303fd9485496ed0f1dcd52d62cb38b /lua/opts.lua
parentc349d1f7998d97f60d3a3945ce8da166b33bf1c8 (diff)
downloaddotfiles-86628d459cabd0c29f0cdbb699e2e18807b958ed.tar.gz
dotfiles-86628d459cabd0c29f0cdbb699e2e18807b958ed.zip
Removed unnecessary files/lines
Diffstat (limited to 'lua/opts.lua')
-rw-r--r--lua/opts.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/opts.lua b/lua/opts.lua
index 06e15fd..b52bcc8 100644
--- a/lua/opts.lua
+++ b/lua/opts.lua
@@ -34,7 +34,7 @@ vim.opt.inccommand = "split" --
vim.opt.ttyfast = true -- Faster redrawing.
vim.opt.lazyredraw = true -- Only redraw when necessary
vim.opt.keywordprg = ":help" -- :help options
---vim.opt.ruler = true --
+vim.opt.ruler = true --
vim.opt.errorbells = false --
vim.opt.list = true -- Show non-printable characters.
vim.opt.showmatch = true --
@@ -124,7 +124,8 @@ vim.opt.pumheight = 10 -- pop up menu height
-- Better Completion
vim.opt.complete = { ".", "w", "b", "u", "t" } --
-vim.opt.completeopt = { "longest,menuone,preview" } --
+--vim.opt.completeopt = { "longest,menuone,preview" } --
+vim.opt.completeopt = {'menu', 'menuone', 'noselect'}
--vim.opt.completeopt = { "menuone", "noselect" } -- mostly just for cmp
--vim.opt.completeopt = { "menu", "menuone", "noselect" } --