Skip to content

Latest commit

Β 

History

History
42 lines (28 loc) Β· 990 Bytes

File metadata and controls

42 lines (28 loc) Β· 990 Bytes

πŸ“ Vim Configuration

This repo includes my customized .vimrc file and a useful cheatsheet for Vim commands.


πŸ“ Repository Contents

  • .vimrc
    My personal Vim configuration file, featuring plugin management via vim-plug, UI tweaks, useful key mappings, and productivity-focused settings.

  • vim-commands.md
    A curated cheatsheet of essential Vim commands, motions, and shortcuts.


βš™οΈ Plugin Management with vim-plug

This configuration uses vim-plug for managing plugins.

πŸ”§ Installation Steps

  1. Install vim-plug:

    curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
        https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
    
  2. Clone this repository:

https://github.com/mamdous-usual/vim.git
  1. Copy the .vimrc file to your home directory:
cp vim/.vimrc ~/.vimrc
  1. Open Vim and install the plugins:
:PlugInstall