fmdefranca / neovimconfig

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nevim Config Notes

Install vim-plug

Run in terminal

curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Can also install powerline Fonts - to use NovaMono

# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts

need to add python and node must install files

Installing zsh

sudo apt install zsh
chsh -s $(which zsh)

Install oh-my-zsh using curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Install node and npm (node v9)

curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs

install build-essentials

sudo apt install -y build-essential

About


Languages

Language:Vim Script 100.0%