Skip to content

iMaary/nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NeoVim Personalization

This repository was created to pre-config the WSL/Ubuntu enviroment for download the Neovim Code Editor. Also, it sets the plugins and personalization to make easily the programmer's life.

Installing neovim

sudo apt install neovim

Checking the neovim version

nvim --version

Installing pre-requisites plugins - UBUNTU

Tagbar for code navigation requisites

sudo apt install exuberant-ctags

COC - Conquer of Completion requisites

nodejs
// might be >= v12.22.12
sudo apt-get install nodejs
npm
sudo apt-get install npm
yarn
sudo apt-get install yarn
clangd for C/C++ programming language
sudo apt-get install clangd-12

Installing pre-requisites plugins - MacOS

Tagbar for code navigation requisites

brew install ctags

COC - Conquer of Completion requisites

nvm for install node
brew install nvm
nodejs
// might be >= v12.22.12
nvm install --lts
set LTS nodejs version

Here is v16.15.0 but it can be whatever lts version is installed in your enviroment.

nvm use 16
uninstall older nodejs version

Here is v10.2.0 but it can be whatever older version is installed in your enviroment.

nvm uninstall v10.2.0

It will to ensure your terminal always opens in a updated version.

clangd for C/C++ programming language
brew install llvm
Import the clangd to each file to use, if neccessary - NEOVIM (UBUNTU/MacOS)
If you're programming in C/C++ language
:CocInstall coc-clangd
If you're programming in Python language
:CocInstall coc-python

Downloading Nerd Fonts

Developer Icons requisites

1 - Install the Hack Nerd Font in Nerd Fonts
2 - Extract .zip folder
3 - Install each compatible font into the folder
4 - Set font on Terminal to Hack NF and save!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published