Cleanup dotfiles
This commit is contained in:
16
dot_config/nvim/testinit.lua
Normal file
16
dot_config/nvim/testinit.lua
Normal 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
|
||||
Reference in New Issue
Block a user