commands to work in nvim

Exit nvim editor vim or nvim are text editors based on the command line. If you dont know how to exit the nvim interface you shoul type esc + esc then write :q :q is the command to leave the nvim or vim editor. nvim modes Normal: You should type esc + esc Insert: You should type i Visual: You should type v Move the cursor in the text In Normal mode of nvim we can use the arrow keys to move in the text but there is a better solution, we can use the right hand using the h, j, k, l keys....

July 12, 2022 · 4 min · 806 words · Jesus Capistran

nvim for writing in markdown

NeoVim or nvim is a text editor based on the terminal, it is used to edit plain text or even for programming. In my case I decided to set up my nvim for writting in markdown. To have this configuration it is neccesary to cofig NeoVim. This modification were based on two sources: jdhao webpage (She is a machine learning engineer): Markdown Writing and previewing in NeoVim - A complete Guide Nicolas Schourmann (Programmer, New Zeland): Vim, aumenta tu velocidad de desarrollo Following jdhao tutorial + Nicolar Shourman course you can learn to customize your nvim enviroment and even you will learn to use the nvim editor....

July 12, 2022 · 7 min · 1364 words · Jesus