@@noblesavage149 for some reason, it seems like yt keeps making my comments disappear. So sorry if you see three of them haha. But I have not tried it. I also don't know lisp, so I don't think I would be the right person to explore it.
Nvim surprised me every single day, I can tell that I'm not an expert, (I'm learning how to setup Nvim for myself yet, btw) but things like this inspire me to go on with this beautiful code editor... Great video and job TJ, you're the best.
What a great idea TJ! This is the sort of trials and tribulations that us mere mortals go through so it is nice to see it from the eye of an experienced "insider" 😀👍
Absolutely amazing video. Entertaining, informative and really well laid out. This content is the bomb! Becoming exposed to the features of nvim by you & the rest of the community is greatly broadening my horizons with respect to developing software. I am greatly appreciative of the effort that you put into this video and your other content. You’re the man, TJ!
Dude, seriously thank you for this video. I love how you go step by step explaining parts of the basic setup and configuration for the plugin (instead of simply copy this, paste that). My migration from completion-nvim to this one was long overdue and this video was just perfect, worked like a charm! Your "explain one plugin, install, setup, config and features" videos are great!
THESE VIDEOS ARE AMAZING, PLEASE NEVER STOP THEM! Huge thanks to you Tj, I was so lost in regards to completion in neovim and this cleared up everything for me!
what I did in mappings was change for and for . So basically I can scroll words without move fingers almost, and to prevent tab use. ( and for Dvorak users)
Very very thanks for all the efforts that you guys are putting make such valuable content, from which nvim users like me getting lots of benfits... Thanks you very much.. This is my first comment i am writing in youtube for any of channel.
This was amazing thank you. I’d love to see you go through your LSP setup, explaining what you do and why. I’m new to lua, so seeing someone explain what is happening makes it way simpler than code diving dot files.
I would say these videos are useful and fun to watch. I would watch them even if I knew most of the stuff, becoz there's always something I don't know. And you guys are the experts and I always enjoy going more deep which you did in this video. I hope videos like these keep coming! :)
Just found these - great stuff! My complete wasn't working, turned out to be something unrelated of course, but getting a solid run through of what SHOULD be there and how it hands together really gave me a bunch of confidence with my autocomplete setup; so when it does flake out, I know it's something else I stuffed up in future (hopefully!)
Thanks so much for this, TJ - I learned a ton! A co-worker convinced me to watch this and make the switch from coc and it definitely worked. So happy with the result. Looking forward to more.
Would love to see more Take Tuesdays! Learned a lot from this video already. Would also like to see an explanation on how your configurations in `after/plugin/*.lua` gets auto-loaded
Hey TJ, you are good at teaching! Thanks a lot. I'm looking forward to the next episodes. How about exploring some wiki plugins? (I saw you are not using vimwiki anymore)
What an excellent video and series. Thanks for putting all the effort and coming with this greatly explained video. After this I am considering giving nvim-cmp a try for sure.
Awesome format, props for the effort it took to prepare this content. Definitely picked a couple of things that I will be taking to my setup. Look forward seeing the upcoming ones!
Ah! Colorbuddy would be fun to do :) I'd have to clean up some code for it I think, but it'd be a good one to revisit. Thanks, I am adding it to the list!
To get the auto import going i had to update the capabilities with `require("cmp_nvim_lsp").update_capabilities(vim.lsp.protocol.make_client_capabilities())` and add them to the lsp servers capabilites in it's setup. Everything else works great thank's for the in depth explanation.
What is your rationale for why tab completion is bad? It feels like a sensible default to me considering it mirrors tab completion in a browser search/address bar. Right now using Ctrl-N in Neovim and tab in my browser has me accidentally opening a new browser windows left and right.
It's about 90% a joke, in general it's just because I like using one key to do one thing (not have tab be overloaded to do 20 different things) and I like using defaults if they are not annoying in nvim. So I think using c-n and c-p is the default and a lot of other menus / items / selections use those within vim, so I think it's good to keep those in mind. But you can use whatever makes you happy :)
Very interesting. thanks TJ. I was able to follow along and got the gh_issues plugin working too. It's interesting that it just shows all the numbers, and you still have to iterate them manually to visually inspect them. This makes me wonder if it might make sense to use telescope as a way to drill down to a single completion item, as it allows to search on keywords that are not part of the ultimate result (e.g. the issue body, which we don't want inserted as a completion), and allows fuzzy searching, of course...
Yeah, you could make a telescope picker that just inserts the selected value and grab all the issues from github as well. It would not be super complicated to do if you already have the gh_issues plugin working!
The gh_issues source is really cool! One thing I was thinking is if it would be possible to set the "kind" (or what it is called) to be the issue title? Such that you can see them all in the menu, instead of the generic "Text". Great video, already looking forward to the next :)
:h ins-completion - likely just changed the way that I will use completion. I appreciate the heads up. Soon to be former 'tab' user. Seems worth the immediate workflow hit that I'll take getting up to speed.
First time watching a video from you (I knew about you, but I always thought your videos and explanations would be too advanced for me 😛) But, GREAT video! Very nice and detailed explanation. I subscribed and I hope I see more videos of this format 🙂
Hi @TJ DeVries great content. I implemented some of your code but I had super TAB and I feel more easy to use it. Would be awesome if you could do a small video explaining with detail why you think using tab is not a good idea. Thanks!
"When I type this *octothorp*..." 😆 TJ you're supposed to be a millenial, not a boomer 😛 that's "hashtag" to you haha Regardless, thanks as always TJ. I always learn a ton from your videos! This one in particular was *packed* to the brim with goodies about nvim-cmp, a plugin that I've used for a while but haven't explored the API of very much. I have several ideas now about how to make my Neovim experience even better with nvim-cmp after watching your video 😃. Your work in the Neovim community as always is much appreciated :)
Excellent. Looking forward to many more episodes of TakeTuesday. My most lacking area of (neo)vim is the native ft-plugins it comes with. No idea how any of that works, and didn't find the builtin docs to be too helpful (I say this lightly because I probably didn't look in the right place or gave it enough of my time). Thanks for all your work TJ, it really does make a difference to us, that watch, and aren't so tied up with the development and ecosystem of what is neovim.
@@tokiomutex4148 That is a great way to say it. In general, if the default shortcuts are not TERRIBLE, then I recommend keeping them the way they are. Often times other things will eventually make sense and it prevents you from overriding any other builtin workflows.
@@teej_dv The default shortcuts are well designed unlike my naive configuration which may overwrite (useful) default behavior that I was not aware of at the time of writing.
Hey TJ! Thank you for your work, I've learned a lot by watching videos you're created over these years. I have a question: How do I make nvim-cmp source dap on runtime (on debugging). Let's say I'm using python or query django object. So, I want my autocompletion suggest all dynamic fields containing in this object. nvim-dap has this info, but all autocompletion sources suggest only static data. I've tried rcarriga/cmp-dap with no luck. Before I start writing my completion source, can you give me a tip on a ready-to-use solution? Thanks!
Thanks for the video! What keys you are entering at 21:07 where the function arguments are added and you can jump between "k", "v" and the end of the function? I can't seem to replicate that behavior.
Thank you TJ, I have been struggling to know what nvim-cmp and those following plugins does. and why it still need Ultisnips in my case. This video is a Godsend for me. Very understandable, explain what those plugins and config does. *chef kiss
I use :help ins-completion for triggering completion when I need to, and let nvim-cmp do the rest in terms of auto-completing. I will try and make a video about it. It's 90% a joke anyway. You should do what makes you like Vim the most :)
Hey TJ, can you help me understand why nvim-lsp and it's associated ecosystem setups are really much more hands on (or maybe I'm doing it wrong) as compared to CoC. I have had to install everything from source as my org runs RHEL7.8 so I didn't even have node, rust, lua stuff. And on the two occasions I tried to setup nvim-lsp, it just took too long without having root access. Any words of advice?
Side note... I'm not a career programmer. I'm an electronics engineering, but just have lot of python stuff to develop for certain chip testing automation
@@teej_dv Its actually allowed me to make an even more streamlined setup file, cause all node modules can be consolidated and initialised in a specific dedicated location rather than have each user of my .rc have to CocInstall
Great video, as usual! I was wondering if (in a future video) you could explain in a bit more details for noobs like me what the difference/relationship/overlap of treesitter and LSP is. I mean they both do syntax highlighting for example? Should I install both? Sorry I tried reading on it but I got a bit confused
They have different focuses. LSP is focused on project level intelligence, tree-sitter is focused on file level intelligence. In generally tree-sitter is doing the highlighting. You can install both. I have a video somewhere on m channel w/ a brief comparison
Haha sorry for the delays. It's actually that we stream the content on tuesdays on stream and then I have to put together a video. That doesn't always get released on tuesday. I am almost done with one and plan on trying to pump out another this week.
How would anyone use the default config with = cmp.mapping.confirm and select = true? It makes you unable to insert new lines. Am I missing something obvious about completion or new lines or is noone using the default?
Hey i've noticed that when u changed your config you run some tj#save_and_exec and that just reload your config, how can i reload with a keybind for lua config files?
Comment below with other plugins you'd like to see in this series or with any other feedback you have!
Thanks for watching :)
Have you tried Olical/aniseed? Thoughts?
@@noblesavage149 for some reason, it seems like yt keeps making my comments disappear. So sorry if you see three of them haha.
But I have not tried it. I also don't know lisp, so I don't think I would be the right person to explore it.
@@teej_dv That's ok, my one seems to have disappeared also. I think yt is going down the proverbials at the moment!
nvim-dap pleeeease
Neogen (it’s an annotation generator using treesitter)
And Neorg
Nvim surprised me every single day, I can tell that I'm not an expert, (I'm learning how to setup Nvim for myself yet, btw) but things like this inspire me to go on with this beautiful code editor... Great video and job TJ, you're the best.
What a really nice message! Thanks! I'm hoping to make a bunch more of these (over time haha, they take quite awhile)
Hey TJ. It's super nice idea for videos to take one plugin/component and become familiar with it.
Glad to hear it! Glad you found it useful!
What a great idea TJ! This is the sort of trials and tribulations that us mere mortals go through so it is nice to see it from the eye of an experienced "insider" 😀👍
Glad to hear it!
nvim-dap. Never tried debugging in a text editor. It is the one thing preventing me from completely switching to nvim
This
@@barower It's on the list :) A few plugins away but I will go over this plugin in the series hopefully
Absolutely amazing video. Entertaining, informative and really well laid out. This content is the bomb!
Becoming exposed to the features of nvim by you & the rest of the community is greatly broadening my horizons with respect to developing software. I am greatly appreciative of the effort that you put into this video and your other content. You’re the man, TJ!
Thank you so much :)
Awesome video. Looking forward to the future TakeTuesdays! Will be looking forward to the luasnip one. Thanks TJ.
Dude, seriously thank you for this video. I love how you go step by step explaining parts of the basic setup and configuration for the plugin (instead of simply copy this, paste that).
My migration from completion-nvim to this one was long overdue and this video was just perfect, worked like a charm!
Your "explain one plugin, install, setup, config and features" videos are great!
So happy to hear :) I've got another one almost done!
Thank you. waiting for the lua snippets video
That's exactly what I need! How a proficient vim user setups his config and uses real world scenarios. And also kudos for warning about tab selection!
Decided to watch this spontaneously. Just as good as the first time. Really miss TakeTuesday.
2 years later, this video still helping lost souls like me. Thanks teej :D
haha that's awesome!
THESE VIDEOS ARE AMAZING, PLEASE NEVER STOP THEM! Huge thanks to you Tj, I was so lost in regards to completion in neovim and this cleared up everything for me!
Hey TJ, thanks for this great video, I really like the format! Best regards, David
Great tutorial in the 'insides' of neovim. Learned a lot. Please keep up the format as is, not too long and not just out of the help docs
what I did in mappings was change for and for . So basically I can scroll words without move fingers almost, and to prevent tab use. ( and for Dvorak users)
This is such a useful video, no other video gives an intro to get things started and a background to what different sources do. Thanks!
Seriously face melting stuff. Really enjoyed the format. Chock full of actionable items. Thanks TJ.
Awesome! :) I will try to keep to that standard!
Very very thanks for all the efforts that you guys are putting make such valuable content, from which nvim users like me getting lots of benfits... Thanks you very much.. This is my first comment i am writing in youtube for any of channel.
Wow! That's very kind of you! So glad you enjoyed it!
This was amazing thank you.
I’d love to see you go through your LSP setup, explaining what you do and why. I’m new to lua, so seeing someone explain what is happening makes it way simpler than code diving dot files.
A builtin LSP video would probably be also be good for a simple setup of some of the features. Thanks for the idea!
I would say these videos are useful and fun to watch. I would watch them even if I knew most of the stuff, becoz there's always something I don't know. And you guys are the experts and I always enjoy going more deep which you did in this video. I hope videos like these keep coming! :)
Just found these - great stuff! My complete wasn't working, turned out to be something unrelated of course, but getting a solid run through of what SHOULD be there and how it hands together really gave me a bunch of confidence with my autocomplete setup; so when it does flake out, I know it's something else I stuffed up in future (hopefully!)
Thanks so much for this, TJ - I learned a ton! A co-worker convinced me to watch this and make the switch from coc and it definitely worked. So happy with the result. Looking forward to more.
Thank you! I've been using coc for a long time. This video and the one about LSP helped me so much in setting everything up.
Sooo good. I love the well-paced and comprehensive walk-through.
Glad the pacing was helpful. It's hard to find the right pace but not take 4 hours haha
Would love to see more Take Tuesdays! Learned a lot from this video already. Would also like to see an explanation on how your configurations in `after/plugin/*.lua` gets auto-loaded
It's automatic now! Just get on a newer release and they get loaded.
Hey TJ, you are good at teaching! Thanks a lot.
I'm looking forward to the next episodes. How about exploring some wiki plugins? (I saw you are not using vimwiki anymore)
Yeah, maybe I will try out one or more of the org-mode plugin replacements. Perhaps vimwiki could be interesting as well.
The GH Issues thing was very impressive! Really nice video :D
Excellent!
What an excellent video and series. Thanks for putting all the effort and coming with this greatly explained video. After this I am considering giving nvim-cmp a try for sure.
ELYEZER YOU HAVE TO BE ON NVIM CMP OR YOU ARE GETTING BANNED FROM TWITCH KAPPA
I really enjoyed this format and the content is excellent! I'll just ditch my prime's yt subscription and follow you now! 😂😂
Don't leave Prime. He's the reason I stream!
I loved this format TJ. Looking forward for more :D
Thanks, had a bunch of stuff happen IRL but hope to get back to doing these soon!
Treesitter next! Btw, I’m curious as to how you get the invisible characters like newlines show up.
Yes, good call for doing tree sitter. I will add that to the list.
You are looking for "help listchars"
you nvim guys are absolute magicians
haha thanks!
Awesome format, props for the effort it took to prepare this content. Definitely picked a couple of things that I will be taking to my setup. Look forward seeing the upcoming ones!
Thanks for your uploads TJ, they're really helpful!
Excellent! So happy to hear that!
Really enjoyed this and look forward to more plugin walkthroughs
Great content, great format, love it, I would love the same kind of walk-through into colorbuddy and your color setup.
Ah! Colorbuddy would be fun to do :) I'd have to clean up some code for it I think, but it'd be a good one to revisit. Thanks, I am adding it to the list!
To get the auto import going i had to update the capabilities with `require("cmp_nvim_lsp").update_capabilities(vim.lsp.protocol.make_client_capabilities())` and add them to the lsp servers capabilites in it's setup. Everything else works great thank's for the in depth explanation.
Don't even consider to become evil person! :) Keep sharing this superb stuff. Learning so much in every single minute!!! :) :) You have a true talent!
What a great content! Thank you, TJ!
Btw, it would be great to see something about the debugging in vim/neovim. Cheers!;)
You could check out The Primagen's vid about Vimspector
I think I will add doing nvim-dap to my list of things to do :) thanks for the suggestion!
Do Emacs next!
Sorry, I don't review Operating Systems.
@@teej_dv Review evil-mode then, AS A NEOVIM CORE DEV
This is great. Made some changes to my setup based on the vid. Looking forward to more.
What is your rationale for why tab completion is bad? It feels like a sensible default to me considering it mirrors tab completion in a browser search/address bar. Right now using Ctrl-N in Neovim and tab in my browser has me accidentally opening a new browser windows left and right.
It's about 90% a joke, in general it's just because I like using one key to do one thing (not have tab be overloaded to do 20 different things) and I like using defaults if they are not annoying in nvim. So I think using c-n and c-p is the default and a lot of other menus / items / selections use those within vim, so I think it's good to keep those in mind.
But you can use whatever makes you happy :)
Very interesting. thanks TJ. I was able to follow along and got the gh_issues plugin working too. It's interesting that it just shows all the numbers, and you still have to iterate them manually to visually inspect them. This makes me wonder if it might make sense to use telescope as a way to drill down to a single completion item, as it allows to search on keywords that are not part of the ultimate result (e.g. the issue body, which we don't want inserted as a completion), and allows fuzzy searching, of course...
Yeah, you could make a telescope picker that just inserts the selected value and grab all the issues from github as well. It would not be super complicated to do if you already have the gh_issues plugin working!
great video waiting for the LuaSnip
Hopefully in the next few weeks :)
The gh_issues source is really cool! One thing I was thinking is if it would be possible to set the "kind" (or what it is called) to be the issue title? Such that you can see them all in the menu, instead of the generic "Text". Great video, already looking forward to the next :)
Yeah! I didn't explore that part, but I think you can set the kind to be something else and that will change the "Text" thing you see.
Nice explanation. Thank you!
:h ins-completion - likely just changed the way that I will use completion. I appreciate the heads up. Soon to be former 'tab' user. Seems worth the immediate workflow hit that I'll take getting up to speed.
First time watching a video from you (I knew about you, but I always thought your videos and explanations would be too advanced for me 😛)
But, GREAT video! Very nice and detailed explanation. I subscribed and I hope I see more videos of this format 🙂
Super glad to hear. I hope to keep making more in the TakeTuesday series.
Looking forward to them 🙂
I love this format, keep them coming
Thank you, really helpful video. Next maybe nvim-dap, how to setup etc.?
It's on the list!
This was really well explained TJ, thanks
Hi @TJ DeVries great content. I implemented some of your code but I had super TAB and I feel more easy to use it. Would be awesome if you could do a small video explaining with detail why you think using tab is not a good idea. Thanks!
That's a good idea, I'll do it sometime :)
@@teej_dv Are we there yet? I'd also be interested :)
Amazing format buddy ✌🏽
Thanks :) I am enjoying it!
this is really great sir . we also want a video on telescope.nvim
hehe a bit too self promotion for the first one, but I will keep that in mind :)
More Take Tuesday episodes pls!!
Part 1 of LuaSnip will hopefully be done soon :)
Looking forward to more of these 🙌
"When I type this *octothorp*..." 😆 TJ you're supposed to be a millenial, not a boomer 😛 that's "hashtag" to you haha
Regardless, thanks as always TJ. I always learn a ton from your videos! This one in particular was *packed* to the brim with goodies about nvim-cmp, a plugin that I've used for a while but haven't explored the API of very much. I have several ideas now about how to make my Neovim experience even better with nvim-cmp after watching your video 😃. Your work in the Neovim community as always is much appreciated :)
I will never give up octothorp. IT IS SO FUN TO SAY!!!!!
Excellent. Looking forward to many more episodes of TakeTuesday.
My most lacking area of (neo)vim is the native ft-plugins it comes with. No idea how any of that works, and didn't find the builtin docs to be too helpful (I say this lightly because I probably didn't look in the right place or gave it enough of my time).
Thanks for all your work TJ, it really does make a difference to us, that watch, and aren't so tied up with the development and ecosystem of what is neovim.
Maybe check ":help ftplugin". That might be helpful.
Thank you TJ for sharing this great content !
My pleasure!
Hey teej, Can you show you'd configure github copilot with this too??
Also you are really doing a great job! keep it up!!
you are a great teacher،
Ooo yeahhh!! Nvim dap!
Really good video thanks!
great content. keep 'em coming plz! would love one about LuaSnip. thank you
I have a video almost done for comment.nvim and then the next videos will be about LuaSnip!
@@teej_dv thats exciting ty!
Why is the Tab/Shift-Tab thing wrong?
Nothing else in vim works that way. Just more consistent and idiomatic not to.
@@nathanhyland So tab completion is a pathway to a non-portable workflow
@@tokiomutex4148 That is a great way to say it. In general, if the default shortcuts are not TERRIBLE, then I recommend keeping them the way they are. Often times other things will eventually make sense and it prevents you from overriding any other builtin workflows.
@@teej_dv The default shortcuts are well designed unlike my naive configuration which may overwrite (useful) default behavior that I was not aware of at the time of writing.
Hey TJ! Thank you for your work, I've learned a lot by watching videos you're created over these years.
I have a question:
How do I make nvim-cmp source dap on runtime (on debugging). Let's say I'm using python or query django object. So, I want my autocompletion suggest all dynamic fields containing in this object. nvim-dap has this info, but all autocompletion sources suggest only static data. I've tried rcarriga/cmp-dap with no luck.
Before I start writing my completion source, can you give me a tip on a ready-to-use solution?
Thanks!
Luasnip next please 🙏
it's not next on the list, but coming soon hopelly :)
Thanks for the video! What keys you are entering at 21:07 where the function arguments are added and you can jump between "k", "v" and the end of the function? I can't seem to replicate that behavior.
After "accept"ing the solution (which is for me), I can move with which is my luasnip "jump-to-next" key.
Thank you TJ, I have been struggling to know what nvim-cmp and those following plugins does. and why it still need Ultisnips in my case. This video is a Godsend for me.
Very understandable, explain what those plugins and config does. *chef kiss
Fantastic content! Greatly appreciated.
Fu***ng hell that Subscribe Button jump scare at 4:53 almost killed me. I was kinda sleepy in front of the pc 😅
What are your cmp select prev/next mappings? I tried default but it seems to break the cmp window.
Just or . You don't need to prefix with to _move_ between the selections, that is to enter into a certain type of ins-completion mode.
Great work👍👍, very helpful thanks
Thank you TJ... great content!
Ok. This series is cool.
Thanks for this video. I found this helpful.
Thank you so much for this video!
So glad you liked it!
Thanks for making these videos
Happy to do so :) more coming soon!
amazing video, very useful content
Thanks :)
Awesome tutorial Tj
Hi, is there a way to call cmp.complete while typing? Just to have the same effect from coc.nvim
sweet vid tj
Yes, do more of these
very useful! Thank you
Please do next Tuesday about Nvim Dap. Thanks
It won't be next tuesday, but it's on my list :)
@@teej_dv Great
I am finding very difficult to add jump to next or previous placeholder. Help me Brother
If you don't use TAB for completion, what do you use? Please refer me to past video that discuss your prefer method for triggering completion. Thanks.
I use :help ins-completion for triggering completion when I need to, and let nvim-cmp do the rest in terms of auto-completing.
I will try and make a video about it. It's 90% a joke anyway. You should do what makes you like Vim the most :)
Hey TJ, how can you get cmp to work with npm libraries?
Hey TJ, can you help me understand why nvim-lsp and it's associated ecosystem setups are really much more hands on (or maybe I'm doing it wrong) as compared to CoC. I have had to install everything from source as my org runs RHEL7.8 so I didn't even have node, rust, lua stuff. And on the two occasions I tried to setup nvim-lsp, it just took too long without having root access. Any words of advice?
Side note... I'm not a career programmer. I'm an electronics engineering, but just have lot of python stuff to develop for certain chip testing automation
Figured it out. Nvm. I love it now. So fast holy shit.
@@PratyushBharati haha I love this thread.
@@teej_dv Its actually allowed me to make an even more streamlined setup file, cause all node modules can be consolidated and initialised in a specific dedicated location rather than have each user of my .rc have to CocInstall
Really enjoyed that! Thanks 👏
Great video, as usual!
I was wondering if (in a future video) you could explain in a bit more details for noobs like me what the difference/relationship/overlap of treesitter and LSP is. I mean they both do syntax highlighting for example? Should I install both? Sorry I tried reading on it but I got a bit confused
They have different focuses. LSP is focused on project level intelligence, tree-sitter is focused on file level intelligence. In generally tree-sitter is doing the highlighting. You can install both. I have a video somewhere on m channel w/ a brief comparison
@@teej_dv yeah I did a bit more reading on the subject and I have a pretty clear picture now, the comment is a bit old. Anyway, thanks Teej!
keep up such good content
How would you do something similar to "g:mucomplete#can_complete" (lifepillar/vim-mucomplete) with nvim-cmp?
Hmmm, I'm not familiar with this. I don't know of good analogues. Sorry!
Waiting for TakeTuesday: luasnip
it's on the list :)
so nice.... this is so good...
It's almost Tuesday :)
Haha sorry for the delays. It's actually that we stream the content on tuesdays on stream and then I have to put together a video. That doesn't always get released on tuesday. I am almost done with one and plan on trying to pump out another this week.
so awesome! thanks!
You are very welcome!
How would anyone use the default config with = cmp.mapping.confirm and select = true? It makes you unable to insert new lines. Am I missing something obvious about completion or new lines or is noone using the default?
I think it's only applicable when the completion menu is visible (so after it's not visible anymore, enter makes you do a new line)
Hey i've noticed that when u changed your config you run some tj#save_and_exec and that just reload your config, how can i reload with a keybind for lua config files?
I re-run files by doing `:source %`, but it just checks to make sure it's a valid filetype to do so.