GitXplorerGitXplorer
J

nvim

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
72bfe0b84cd49a6e097665fdace457528c30e659

commit

JJakkestt committed 3 years ago
Unverified
688c562f9acaf8c2059792025d3a6d7f5ffb2949

Change keybind

JJakkestt committed 3 years ago
Unverified
af67a3db4f0c467489dbfd779714f3dcf2623043

Something

JJakkestt committed 3 years ago
Unverified
8624bed3926038276bd17b6a22d38681585dad53

Fix something

JJakkestt committed 3 years ago
Unverified
30936652253b8decc62e07feba0ad24c4c9747bf

FJOISEJFO

JJakkestt committed 3 years ago
Unverified
085ccf19bcaeb658e925f2bc5528fcb7f1670dc4

Disable telemetry

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