repos / dotfiles

my dotfiles

commit
15c75e2
parent
c630b21
author
Eric Bower
date
2025-09-26 23:43:44 -0400 EDT
fix(nvim): rm fuzzy and set max height on popup
1 files changed,  +2, -1
M dot_config/nvim/init.lua
+2, -1
 1@@ -24,7 +24,8 @@ o.signcolumn = "yes"
 2 o.backspace = "indent,eol,start"
 3 o.shell = "/bin/bash"
 4 o.colorcolumn = "100"
 5-o.completeopt = { "menuone", "noselect", "popup", "fuzzy" }
 6+o.completeopt = { "menuone", "noselect", "popup" }
 7+o.pumheight = 15
 8 o.laststatus = 0
 9 o.winborder = "rounded"
10 o.undofile = true