Skip to content

Instantly share code, notes, and snippets.

@kfiresmith
Last active March 27, 2021 14:23
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 kfiresmith/80729623b3923b6e086ed20305e2a7fe to your computer and use it in GitHub Desktop.
Save kfiresmith/80729623b3923b6e086ed20305e2a7fe to your computer and use it in GitHub Desktop.
" tabstop: Width of tab character
" softtabstop: Fine tunes the amount of white space to be added
" shiftwidth Determines the amount of whitespace to add in normal mode
" expandtab: When on uses space instead of tabs
set tabstop =2
set softtabstop =2
set shiftwidth =2
set expandtab
set autoindent
set smartindent
" set number
set ruler
set visualbell
set encoding=utf-8
set wrap
set textwidth=100
set laststatus=2
set showmode
set showcmd
set smartcase
set showmatch
set t_Co=256
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment