#neovim
Read more stories on Hashnode
Articles with this tag
Location of Neovim configuration file, init.vim · In MacOS and Linux, you can usually find init.vim in the following folder ~/.config/nvim/ If you...
Install and apply colorschemes or themes in neovim · Installation Colorschemes/themes in Neovim / Vim need to be installed like any other plugin. You can...
VS code like code runner in Neovim with a simple script. · To implement a code runner in neovim you'll have to write a script, you can just copy the...
I've been always obsessed with efficiency and getting things done faster. Right about when I was getting started with coding in my 2nd semester I...
lua in init.vim To include lua script in neovim's init.vim, enclose it in lua << EOF & EOF For example; lua << EOF vim.opt.termguicolors = true ...
Using 'vim-plug' to install plugins in Neovim · We are going to use a plugin manager 'vim-plug' for installing & managing plugins in neovim. The...