https://github.com/mega2799/nvimconfig
https://github.com/mega2799/nvimconfig
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mega2799/nvimconfig
- Owner: mega2799
- Created: 2020-12-07T22:39:06.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-09T16:50:50.000Z (about 5 years ago)
- Last Synced: 2025-02-23T20:43:35.913Z (over 1 year ago)
- Language: Vim script
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NVIM
`sudo apt install nvim`
create the config directory in which to put the init.vim
`mkdir .config/nvim`
Move the init.vim into ./config/nvim
# Basic conf
Add the Vim-plug 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`
1) Begin the section with call plug#begin()
2) List the plugins with Plug commands
3) call plug#end() to update &runtimepath and initialize plugin system
Nvim command `:PlugInstall`
# Add Fonts
`https://www.linux.com/topic/desktop/how-manage-fonts-linux/`
` sudo apt-get install -y fonts-powerline`
`yay -S powerline` ==> ARCH
` sudo apt-get install -y fonts-font-awesome`
`yay -S awesome-terminal-fonts` ==> ARCH
# COC
Install NodeJS
`sudo apt install nodejs`