Check out my tutorial on Leap, a Neovim plugin to make you move faster! kzbin.info/www/bejne/mmOqp6yOjdGBl5I
@tonyjaradev Жыл бұрын
Lord knows I always need more plugins
@jamesmillsnicholas7813 Жыл бұрын
There's a blues song in there somewhere. I got the plugin blues. Can't get enough, Lord knows...
@sebastianalfaro1887 Жыл бұрын
Same bro
@tonyjaradev Жыл бұрын
@@jamesmillsnicholas7813 Amen
@mxc_clips Жыл бұрын
Keep the nvim videos coming. Learning more and more everyday and these videos help
@347Online6 ай бұрын
this video is so good! it seems like so many vim videos are all about the exact same few plugins, thanks!
@souravpakhira Жыл бұрын
Thanks for making video. Please make more videos on neovim and stuff it really helps for new users.
@pnel Жыл бұрын
Thanks for doing these AstroNvim specific videos - much appreciated 👏
@runelausen11354 ай бұрын
A nice detail of the surround plugin is that when surrounding with the various bracket types you can choose if you want those ugly spaces inside the brackets. E.g., if somewhere in a word "word", ysiw( results in "( word )" like shown in the video while ysiw) results in "(word)". I use the latter all the time :-). Same principle for {} and [].
@omarmagdy1075 Жыл бұрын
nvim-surround also works with tags in html, xml which is very useful, cst will change the surrounding tag
@code_explorations Жыл бұрын
I enjoyed this and would love to see more videos on neovim plugins. Not the headline ones that everyone knows, but useful things like adding custom text objects, advanced treesitter, and more.
@lpanebr Жыл бұрын
TreeSJ looks very interesting. Thanks!
@KuzyoYaroslav Жыл бұрын
Installed Treesj and nvim-bgf. Thank you.
@Segosh Жыл бұрын
nvim-surround is awesome! thanks
@Redyf Жыл бұрын
The first one is pretty cool, thanks for sharing
@MrLotrus11 ай бұрын
Great list of plugins!
@hotdog2c Жыл бұрын
Awesome video! This could easily be a series
@a_maxed_out_handle_of_30_chars Жыл бұрын
thank you, very cool :)
@no_name47968 ай бұрын
The nvim-surround feels like it should be in core neovim. I mean we have motions to modify inside a selection, it would make sense to extend those to allow modifying around a selection And the chanche of it happening is not zero, since they already added the commenting plugin as a builtin feature!
@mitreshdabhi9630 Жыл бұрын
which theme are you using? great video btw 👍
@NostraDavid2 Жыл бұрын
TOKYOOOOOOOO!
@rockyzhang24 Жыл бұрын
nvim-bqf is fantastic.
@sagojez Жыл бұрын
Can you do a full tutorial on nvim-bqf?
@odoenet Жыл бұрын
Awesome! Yesterday I was just wondering if there was a way to get previews with qf after doing some vimgrep. Thanks!
@seshadribasava2801 Жыл бұрын
Awesome videos, they are very helpful. Can you make a video on lazy package manager? It would be very helpful.
@seshadribasava2801 Жыл бұрын
@Cretezy while using auto pairs in insert mode how to get past the closing pair ? I mean: when I type " ( " it types "()". after typing the text how do I move past the closing brace ?
@code_explorations Жыл бұрын
@@seshadribasava2801To move past the closing bracket, type it.
@ubandog Жыл бұрын
How do you get the highlighting for when you're selecting a word, etc.?
@MrSpeedFrk Жыл бұрын
IntellIj is still my go to ide to get stuff done, neovim is fun and great and all but when you are dedicating a good chunk of time to constantly updating , replacing plugins , the boilerplate config unwinding config / binding conflicts and lookup and ask yourself where did you your day go while having to have a jira completed by tomorrow this hits home pretty quickly
@DTorange1 Жыл бұрын
nvim-bqf is not working for me. Smth wrong with parsing treesitter
@shyam2305 Жыл бұрын
what theme is this?
@emperorpicard490110 ай бұрын
Maybe I am just being dense, but I don't get the point of trouble when nvim already includes quickfix?
@danielj4860 Жыл бұрын
nice video, anyone know if its possible to do vim-surround without a plugin?
@deprecated96 Жыл бұрын
Same question here!
@code_explorations Жыл бұрын
Not possible
@Egzvorg Жыл бұрын
You can do ciw(")
@AyoDamilareMichael7 ай бұрын
Double click the word + shift + quote
@vanvothe4817 Жыл бұрын
fzf-vim, tagalong, fugitive, oil-nvim
@vanvothe4817 Жыл бұрын
I like oil.nvim
@MrSpeedFrk Жыл бұрын
surround plugin has been around in vim for ages
@sinaebr7337 Жыл бұрын
i think surround should default amd not installed as plugin
@ysomad11 ай бұрын
trouble is useless since you can just show all errors and warnings in telescope. Also LSP provides "code actions" for quick fix
@LinuxForLife Жыл бұрын
Very interesting! Thanks for sharing. 👍👍👍
@Linuxdirk Жыл бұрын
I dislike plugins cluttering their keys all over the alphabet ... The surround plugin's key combinations should all start with s.
@QckSGaming Жыл бұрын
That's why you should always make your own bindings over the default ones. I like to bind everything in the way of sd i.e. "custom thing" "surround" "delete"
@viveroz Жыл бұрын
There's a plugin called mini-surround where all the surrounding key maps start with s
@locker47 Жыл бұрын
It's setup that way by default so it stays consistent with vim's verb-noun "vocabulary" for keymaps, like "cw" stands for "change word" and "d3w" for "delete 3 words". Besides, "s" by itself is already mapped by default to "substitute", but of course you can change any of these to whatever you want.