https://github.com/abdullahalzubaer/neovim-setup
https://github.com/abdullahalzubaer/neovim-setup
neovim neovim-plugins vim vimrc
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abdullahalzubaer/neovim-setup
- Owner: abdullahalzubaer
- License: mit
- Created: 2021-08-10T00:55:00.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-04T15:03:32.000Z (6 months ago)
- Last Synced: 2025-02-05T09:54:31.685Z (3 months ago)
- Topics: neovim, neovim-plugins, vim, vimrc
- Language: Vim Script
- Homepage:
- Size: 1.77 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neovim-Setup for Windows 10
Disclaimer: I know nothing about vim (for real no joke)
---
In this repository, I will provide a step-by-step process to set up Neovim for Windows 10. It took me a while to get it to work with intense help from the internet. When I first came across vim editor, I was really fascinated and enchanted by the whole idea of using a keyboard with so many shortcuts that will make coding a lot quicker and most importantly enjoyable.
---
Step 1: Download NEOVIM: https://github.com/neovim/neovim/releases
(You can also add bin folder's location of neovim to your "System variable" so that you can access neovim with "nvim" from the terminal from anywhere)
* Add the location of the Neovim's bin folder - for me it was this "C:\Program Files\Neovim\Neovim\bin"
(Here on, assuming you have set the path)
Step 2: For some reason I did not have the vimrc file (my vimrc is provided in this repository, if you want you can use that one). Therefore:
1. Navigate to "C:\Users\USERNAME\AppData\Local\nvim"
2. Create init.vim
Step 3: Launch neovim from terminal with this command
```
nvim
```
Step 4: Edit your vimrc file, which will contain all the plugins and other settings with this command
```
:e $MYVIMRC
```
Step 5: The usual edit, save, quite and that's it. And when you restart your neovim you are good to go.---
From here on assuming neovim is working, there are a lot of good tutorials available online to follow and to proceed further, for example installing packages, navigating and much more.
Also, if I personally find some plugins to install was difficult I will add the instructions of how to make that plugins work in this repository, like I did for coc.nvim (which is for autocompletion mainly I guess)
---
Reference: Thanks to "sharifee" for the tutorial (the only one I found to be helpful) and for his kind answers to the comments, from where I actually got neovim to work :)
https://www.youtube.com/watch?v=h6EceMac8eE
# Extra Notes:
Uninstall extension from Coc:
"To uninstall an extension, type ":CocList extensions" and then press TAB key and there it will prompt you to choose "u" and uninstall the extension you selected": https://github.com/neoclide/coc.nvim/issues/1311#issuecomment-817917315
You do not need to restart neovim you can just do this
`:source%`