Skip to content

Instantly share code, notes, and snippets.

@eindiran
Created November 12, 2019 21:52
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 eindiran/61587d3c79eaac762cd1be4fbada2a81 to your computer and use it in GitHub Desktop.
Save eindiran/61587d3c79eaac762cd1be4fbada2a81 to your computer and use it in GitHub Desktop.
Alternate, light-weight .vimrc
"---------------------------------------------------------------------
"
" FILE: .alt-vimrc
" DESCRIPTION: An alternate .vimrc intended to be extremely
" light-weight. Loads no plugins, etc.
" AUTHOR: Elliott Indiran
"
"---------------------------------------------------------------------
set number
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
set copyindent
set ignorecase
set smartcase
set nocompatible
set hlsearch
" Show tabs not as whitespace
" A given line with a tab will look like this:
" some text before the tab▸···some text after the tab
set list
set listchars=tab:▸·
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment