Cleanup dotfiles

This commit is contained in:
Corey Smith
2025-07-23 00:26:25 -07:00
parent 75c981e76d
commit e25d845bbf
33 changed files with 3394 additions and 0 deletions

View File

@ -0,0 +1,16 @@
-- Enable modern command-line completion
vim.opt.wildmode = { "longest", "full" }
vim.opt.wildmenu = true
vim.opt.wildoptions = "pum"
vim.opt.pumblend = 10
vim.opt.pumheight = 10
-- Enhanced command-line completion
vim.keymap.set('c', '<C-p>', '<Up>', { noremap = true })
vim.keymap.set('c', '<C-n>', '<Down>', { noremap = true })
-- Set up better command-line experience
vim.opt.cmdheight = 1
vim.opt.laststatus = 2
vim.opt.showmode = true
vim.opt.showcmd = true