GitXplorerGitXplorer
J

nvim

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
d8512fc81068d076dfecb802db7760cae9647ccd

No bitches?

JJakkestt committed 3 years ago
Unverified
7ba72fd96700e443e11161c53dccacdcd06248d4

Update nvim-tree config and removed auto-close because it apparently is

JJakkestt committed 3 years ago
Unverified
6cd00444037d8653a275aa1b60c91733d92ae0c2

Update plugin config

JJakkestt committed 3 years ago
Unverified
c0706eb354c0cbda882d645e3916cb3bddf860d4

Merge branch 'master' of https://github.com/Jakkestt/nvim into HEAD

JJakkestt committed 3 years ago
Unverified
c32c11e2de2eb9abca344cc1f05cee6207e97db6

Commit

JJakkestt committed 3 years ago
Unverified
e3ab85d1dc984daa64ab88baa213d4af24e557c0

commit

JJakkestt committed 3 years ago

README

The README file for this repository.

Neovim from scratch

Each video will be associated with a branch so checkout the one you are interested in, you can follow along with this playlist.

Try out this config

Make sure to remove or move your current nvim directory

IMPORTANT requires Neovim 0.6 release version

git clone https://github.com/LunarVim/Neovim-from-scratch.git ~/.config/nvim

Run nvim and wait for the plugins to be installed

NOTE (You will notice treesitter pulling in a bunch of parsers the next time you open Neovim)

Get healthy

Open nvim and enter the following:

:checkhealth

You'll probably notice you don't have support for copy/paste also that python and node haven't been setup

So let's fix that

First we'll fix copy/paste

  • On mac pbcopy should be builtin

  • On Ubuntu

    sudo apt install xsel
    
  • On Arch Linux

    sudo pacman -S xsel
    

Next we need to install python support (node is optional)

  • Neovim python support

    pip install pynvim
    
  • Neovim node support

    npm i -g neovim
    

NOTE make sure you have node installed, I recommend a node manager like fnm.

The computing scientist's main challenge is not to get confused by the complexities of his own making.

- Edsger W. Dijkstra