Updated README.md
Added LICENSE.txt
Barebones, still it works
hello-vim.vim
is a script you can add to your .vimrc
file to display keybindings on the screen while you work in Vim.
This script is intentionally not a plugin—it's designed for beginners who may not yet know how to set up Vim plugins. If you're new to Vim and just trying it out for fun, the default keybindings can feel intimidating, and this script aims to make the experience smoother.
Steps for Vim users:
.vim
directory:
mkdir .vim
.vim
directory, create a .vimrc
file:
cd .vim && touch .vimrc
.vimrc
file:
cat << EOF >> .vimrc
# Paste the script here
EOF
Steps for Neovim users:
.config
directory and an nvim
directory inside it:
mkdir -p ~/.config/nvim
nvim
directory, create an init.vim
file:
touch ~/.config/nvim/init.vim
init.vim
file:
cat << EOF >> ~/.config/nvim/init.vim
# Paste the script here
EOF