Skip to content

Instantly share code, notes, and snippets.

@SwargamAvinash
Last active March 7, 2021 05:34
Show Gist options
  • Save SwargamAvinash/d9beeb0d4250e8db6e3a0625cbf71454 to your computer and use it in GitHub Desktop.
Save SwargamAvinash/d9beeb0d4250e8db6e3a0625cbf71454 to your computer and use it in GitHub Desktop.
Configure your vim editor

Make your Vim Look better

  • Got to home folder
cd ~
  • Create a .vimrc file → This file will contain all the configuration for you vim.
vi ~/.vimrc
  • Insert this Simple Config File for Simple Colorful Editor
syntax on
colorscheme desert    " Color Scheme for Vim
set showmode          " vim will open as a window.
set number            " Line Numbers
set ruler
set showmatch         " Show matches on brackets
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment