https://github.com/raulpy271/dot_rc
https://github.com/raulpy271/dot_rc
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raulpy271/dot_rc
- Owner: raulpy271
- Created: 2020-05-30T22:28:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-11T22:37:46.000Z (12 months ago)
- Last Synced: 2025-01-11T23:31:14.031Z (12 months ago)
- Language: Vim Script
- Size: 822 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My config files
## NeoVim config:
```sh
# Install NeoVim
# Install vim-plug: https://github.com/junegunn/vim-plug
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'
# Install a Nerd Font
# Font Recommended: Agava https://www.nerdfonts.com/font-downloads
# Copy My neovim config:
cp init.vim ~/.config/nvim/init.vim
# Open Neovim and install Plugins:
nvim -c ":PlugInstall"
# Check if everything is ok:
nvim -c ":checkhealth"
```