Created
January 24, 2019 03:07
-
-
Save kidchenko/7ec354d144a93bfa9243a88b89a24f11 to your computer and use it in GitHub Desktop.
My basic .vimrc based on @waf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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