Skip to content

Instantly share code, notes, and snippets.

@packetchef
Created July 21, 2020 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save packetchef/8295f0ccd83c5aadbbd1b8f5728b5e29 to your computer and use it in GitHub Desktop.
Save packetchef/8295f0ccd83c5aadbbd1b8f5728b5e29 to your computer and use it in GitHub Desktop.
# My VIM config
# You can also call each of these individually from a : command prompt
# Clear last search highlighting
noh
# Do case-sensitive search
set noic
# Do case-insensitive search
# set ic
# Add line numbering
set number
# Enable syntax highlighting
syntax on
# Tell me what row and column I'm at
set ruler
# YMMV for Pythonistas
set expandtab
set tabstop=4
set shiftwidth=4
# Add a color column bar at position 80
set colorcolumn=80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment