I finally found this channel (again) - was looking for it (had it in my previous account). Thank you for the content!
@MrCradleman7 ай бұрын
Thanks Mr Mario, always wait for your videos
@MarioCarrion6 ай бұрын
Thanks! I hope you found the video useful.
@DGDG00000003 ай бұрын
You have recorded the best tutorials about Golang, all around the world ! thank you for that, Sir.
@rusinxls5 ай бұрын
thank you for this video Mario, great introduction to nvim and its plugins
@MarioCarrion4 ай бұрын
I'm glad you found the video useful, take care!
@diegodario14004 ай бұрын
The fuzzy file suggestion was neat, I loved it. Thanks for sharing
@MarioCarrion4 ай бұрын
It's really amazing; super helpful.
@yuchihchiu22633 ай бұрын
As a developer transitioning from GoLand to Neovim, your videos have been incredibly helpful to me😍
@WhatNameHere7 ай бұрын
I was so looking for this videooooo. thank you. Havent watched yet, but I believe lsp, dap and other important parts are covered.
@MarioCarrion6 ай бұрын
I didn't cover debugging-that's a video in itself-but other than that, what you mentioned is in the video.
@ErmandDurro5 ай бұрын
WOW this is amazing content. By far the best video I have seen for explaining the nvim setup for golang. You have no idea how useful it was for me. THANK YOU so much 😃 I wish I could find something similar for Typescript as well 😄
@MarioCarrion4 ай бұрын
Thanks! I'm glad you liked the video. Cheers!
@smjure7 ай бұрын
Great vid and blog post, thank you Mario 👍
@MarioCarrion6 ай бұрын
Thank you. Take care!
@mlopezqc4 ай бұрын
Thanks for the suggestions and the configuration files. I'm using them right now. The only thing I've changed is the test files keymaps. I don't know why you are overriding 'A', which sends the cursor to the end of the line in INSERT mode or 'V' which is used to select whole lines.
@MarioCarrion4 ай бұрын
I think it's a habit, if I recall correctly those were the default mappings when using vim-go; but hey I'm happy to hear your feedback, I'm always looking forward to improving my keymaps.
@BoosterShot10107 ай бұрын
Thank you for the great content!. It would be great if you could make a series on building a production ready application in golang. There aren't as many such content in Go as in other languages.
@MarioCarrion6 ай бұрын
Good idea, thanks for your suggestion.
@GabrielPozo7 ай бұрын
I'll always be an Emacs guy, but this video is making me want to give Vim another try.
@yuchihchiu22633 ай бұрын
I was wondering how you made the transition from using Packer to LazyVim. Also, are there any articles or videos you could recommend for more information on this topic
@MarioCarrion3 ай бұрын
I read the Lazy documentation, the migration guide (although short) was really useful: lazy.folke.io/usage/migration
@baloguntobi9176 ай бұрын
Thank you! What about for tests? Want to hit f5 with debugger enabled etc
@BreakeDanceVEVO4 ай бұрын
Hey Mr Mario. I'm just wondering which font are you using? As it seems at first it's the Jetbrains Nerd Font Mono, but some of the keywords in Go files are italic. Is there any specific settings to make it as such (it looks nice!).
@MarioCarrion4 ай бұрын
Hi. Yes I'm using Jetbrains Nerd Font (the patched version); the styling comes from my theme catppuccin: github.com/MarioCarrion/videos/blob/main/2024/nvim-configuration/lua/mario/plugins/catppuccin-theme.lua#L16-L18 Cheers!
@BreakeDanceVEVO4 ай бұрын
@@MarioCarrion tnxxx!
@intl1233 ай бұрын
How do you produce an instructional video like this? What are the tools you use? The screen recorder, your audio, your image, the camera, and the cursors?
@PainfulBBQ6 ай бұрын
Hi! Thanks for the video! What tool are you using for drawing on the screen?
@MarioCarrion6 ай бұрын
Thanks for watching. It's called Presentify.
@prashlovessamosa7 ай бұрын
Thanks Mr Mario
@MarioCarrion6 ай бұрын
Thanks for watching. Take care.
@kharismasastrawansyah33146 ай бұрын
hello sir, why this repository not an option for git clone? Thank You !
@allisondealmeida5 ай бұрын
Mario, what is the tool you use to create markings during the explanation? How do I change the theme?
@MarioCarrion5 ай бұрын
The tool is called presentify, about the theme it depends, you can literally modify the catpuccin configuration or choose another theme out there.
@Jdtv6892 ай бұрын
Can you build / run /debug from nvim ?
@yuxiang42187 ай бұрын
great video
@yakomisar6 ай бұрын
Thanks Mario, why do u use separate plugin for the gt/gi/gr and etc.? it is already incorporated in telescope.Just checked your dotfiles, you should update your neovim version and then you can also delete plugin for commenting.
@MarioCarrion6 ай бұрын
When I recorded this video I was using v0.9.5; recently I upgraded to v0.10.0 and noticed a bunch of broken configurations, I'm still playing around with it, I'll probably update the configuration to remove redundant stuff. Do you have a configuration you can share?
@marioquinteros68365 ай бұрын
Hello, i am newbie on nvim please i need help that how clone the dotfiles, from linux and begin to study go thanks
@MarioCarrion5 ай бұрын
The instructions are here: github.com/MarioCarrion/videos/blob/e5ab66c3f75ea31373567892defc84be1f730546/2024/nvim-configuration/README.md clone the repo and copy the files over to your local config path; in main I updated the code to match the most recent neovim version.
@danielwojnar38767 ай бұрын
What's about debugging? Have you tried dap?
@MarioCarrion6 ай бұрын
Debugging is a video in itself; I'll prepare something.
@maguilecutty6 ай бұрын
No testing or debugging?
@MarioCarrion6 ай бұрын
Testing is included see the keymaps in "navigator.lua"; also navigator includes debugging options already you can review their README for that.