Where to Find or Create init.vim in Neovim
Location of Neovim configuration file, init.vim
Jun 19, 20231 min read47

Search for a command to run...
Articles tagged with #neovim
Location of Neovim configuration file, init.vim

Install and apply colorschemes or themes in neovim

VS code like code runner in Neovim with a simple script.

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 discovered Vim. Ever since then, I knew, in spite of the steep learning curve, I had to learn it to make...

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 vim.opt.colorcolumn = "80" EOF
Using 'vim-plug' to install plugins in Neovim
