The Most Requested Neovim Config

preview_player
Показать описание
In this video I go over the MOST requested Neovim configuration I get asked about so you can have a Noice UI and great autocomplete on the command line.

Join the channel to get access to perks:

Gear:

🎵 Music
Music: Dreams - Bensound

⏰ Timestamps
0:00 Intro
1:36 UI features
1:46 Dismiss messages keymap
2:03 Virtual Text
2:22 My Favorite thing about Noice
2:32 Searching messages
3:18 Command line autocompletion
4:27 Outro

#neovim #coding #programming
Рекомендации по теме
Комментарии
Автор

What are your favorite plugins in Neovim?

ascourter
Автор

Thanks to this video I learned how to enable autocomplete in cmdline, it was exactly what I was looking for. Thanks :)

Redyf
Автор

This is just perfect!! ❤ thanks mister!

utvikler-no
Автор

Great video thanks man, I was having difficulties setting up cmp with lazy

radomirmijovic
Автор

nice plugin, but I couldn't find the most basic config: how do I set the TIMEOUT of the messages???

borjovsky
Автор

Hey man I really appreciate your work! Any chance we might get a video on setting up Neovim for Java development? Setting up the Java lsp seems to be pretty difficult.
Cheers!

thetruth
Автор

You mentioned noice centering it and avoid a crick in your neck. Have you tried setting
scrolloff = 999
It keeps the cursor centered in the page

richardhernandez
Автор

My issue regarding noice is, sometimes I want to dismiss the messages but I want to use escape as my key binding now to use escape I want to know when noice is printing some message on the screen so that only in that condition pressing the escape key will dismis the message otherwise it should work as usual,

But i don't know how to check that noice is showing message on screen currently.

ravipratapmishra
Автор

Do you know if there's a way to have the virtual text at 2:10 be dismissed when the cursor is moved or you go into insert mode or something? The only way I know how to get rid of it right now is to open up a new search and then exit the search, and that gets annoying imo.

TownspersonB
Автор

Hey, how can you map down arrow to be mapped to the same command as Tab when the autocomplete pop up menu appears in the command line?

mokied
Автор

This is great. Could we have a tutorial on how to build plugins?

shreyashkhairkar
Автор

do you know how do you get the string searching at 2:08

banchanbet
Автор

Does cmdline allow for execution of external binaries? Let’s say simple ‘git add .’

xiLikeDoitx
Автор

How do you get the command line in the middle of the screen. Mine is at the top..

utvikler-no
Автор

How do you get that Search string pop up??

sebastianalfaro
Автор

Idk but i prefer to keep it as vanilla nvim, feels better to me

darianmorat
Автор

How about a video showing you installing the whole setup.. love videos that are meaningless.. look what my terminal looks like..

thisbridgehascables
Автор

vim.keymap.set({"i"}, "<C-K>", function() ls.expand() end, {silent = true})
vim.keymap.set({"i", "s"}, "<C-L>", function() ls.jump( 1) end, {silent = true})
vim.keymap.set({"i", "s"}, "<C-J>", function() ls.jump(-1) end, {silent = true})

vim.keymap.set({"i", "s"}, "<C-E>", function()
if ls.choice_active() then
ls.change_choice(1)
end
end, {silent = true})

any idea what does this do in LuaSnip?

sumit_