Skip to content

Instantly share code, notes, and snippets.

@kidchenko
Created January 24, 2019 03:07
Show Gist options
  • Save kidchenko/7ec354d144a93bfa9243a88b89a24f11 to your computer and use it in GitHub Desktop.
Save kidchenko/7ec354d144a93bfa9243a88b89a24f11 to your computer and use it in GitHub Desktop.
My basic .vimrc based on @waf
" the basics
syntax enable
set nocompatible
set encoding=utf-8
" windows clipboard integration
set clipboard=unnamed
" intelligent searching and formatting
set ignorecase
set smartcase
set smartindent
set smarttab
" modern rendering
set renderoptions=type:directx
set incsearch
set lazyredraw
set ttyfast
" tab
set tabstop=4
set shiftwidth=4
set expandtab
set nowrap
" better parenthesis / html tag matching
runtime! macros/matchit.vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment