Code Monkey home page Code Monkey logo

config's Introduction

Set up the nvim configuration

  1. Download Neovim
wget https://github.com/neovim/neovim/releases/download/v0.5.1/nvim-linux64.tar.gz
  1. Install Neovim
tar -xzvf nvim-linux64.tar.gz
mv nvim-linux64 nvim
sudo mv nvim /opt
sudo ln -s /opt/nvim/bin/nvim /usr/bin/nvim
  1. Install Plugin Manager
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
mkdir -p ~/.config
  1. Clone config directory
cd ~
git clone https://github.com/fraj123/config.git
  1. Symbolic link
ln -s ~/config/nvim/ ~/.config/nvim
  1. Install Plugins
:PluginInstall
  1. Resolve error 7.1. Node Error
[coc.nvim] node is not executable

Install Nodejs

wget https://nodejs.org/dist/v17.6.0/node-v17.6.0-linux-x64.tar.xz
tar -xzvf node-v17.6.0-linux-x64.tar.xz
mv node-v17.6.0-linux-x64 node
sudo mv node /opt/
echo "export PATH=$PATH:/opt/node/bin" >> ~/.bashrc
source ~/.bashrc

7.2. Python module error

No "python3" provider found. Run :checkhealth provider

Install module python

sudo apt install python3-pip
python3 -m pip install --user --upgrade pynvim

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.