Minor changes to tmux key bindings and names; minor clean-up

This commit is contained in:
2025-08-28 21:38:15 -05:00
parent 624a06cc36
commit d4f05595d2
4 changed files with 19 additions and 36 deletions

View File

@@ -89,14 +89,6 @@ return {
})
-- `/` cmdline setup.
cmp.setup.cmdline('/', {
mapping = cmp.mapping.preset.cmdline(),
sources = {
{ name = 'buffer' }
}
})
-- `:` cmdline setup.
cmp.setup.cmdline(':', {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources({
@@ -107,21 +99,6 @@ return {
matching = { disallow_symbol_nonprefix_matching = false }
})
vim.diagnostic.config({
-- update_in_insert = true,
float = {
@@ -133,6 +110,5 @@ return {
prefix = "",
},
})
end
}