Skip to content

Instantly share code, notes, and snippets.

@cbismuth
Created July 11, 2018 08:50
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 cbismuth/d7fb6a351ba8a1e545472eb7a2169cc2 to your computer and use it in GitHub Desktop.
Save cbismuth/d7fb6a351ba8a1e545472eb7a2169cc2 to your computer and use it in GitHub Desktop.
.vimrc
filetype plugin on
filetype indent on
syntax enable
set autoread
set encoding=utf8
set ffs=unix,dos,mac
set nobackup
set nowb
set noswapfile
set nu
set mouse=a
set showmatch
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set smarttab
set ai
set si
set incsearch
set ignorecase
set hlsearch
set cursorline
set wildmenu
set ruler
set backspace=eol,start,indent
set whichwrap+=<,>,h,l
autocmd BufWritePre * :%s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment