https://github.com/arjuuuuunnnnn/nvim-config
neovim config using vim-plug as Plugin manager
https://github.com/arjuuuuunnnnn/nvim-config
linux neovim vim
Last synced: 9 months ago
JSON representation
neovim config using vim-plug as Plugin manager
- Host: GitHub
- URL: https://github.com/arjuuuuunnnnn/nvim-config
- Owner: arjuuuuunnnnn
- Created: 2024-04-09T15:31:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-25T15:30:23.000Z (almost 2 years ago)
- Last Synced: 2025-10-10T20:21:56.610Z (9 months ago)
- Topics: linux, neovim, vim
- Language: Vim Script
- Homepage:
- Size: 771 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## My NVIM text editor config
**NOTE**: using ```vim plug```

Create a file named `~/.config/nvim/init.vim`
Then run the below command to install vim-plugin manager
```bash
curl -fLo ~/.var/app/io.neovim.nvim/data/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```
Now open the file init.vim using `nvim`
And in the command mode
```bash
:PluginInstall
```
Install required dependencies:
```bash
sudo apt-get install exuberant-ctags
sudo apt-get install npm
sudo apt-get install nodejs
sudo apt-get install python3-pip
pip install jedi
```
Now find the `coc.vim` folder, which usually in `~/.config/nvim/plugged/coc.nvim` or `~/.local/share/nvim/plugged/coc.nvim`
Go to that directory
then
```bash
sudo npm install -g yarn
yarn install
yarn build
```
to enable autocomplete for python, c, cpp, web-dev
in the nvim's command mode
```bash
:CocInstall coc-python
:CocInstall coc-json coc-tsserver coc-prettier coc-html coc-css
coc-eslint
:CocInstall coc-clangd
```
To delete any Plugins, remove the Plugin from init.vim file and
```bash
:PlugClean
```