Created
June 23, 2020 21:52
-
-
Save naillizard/4745a253b940186a51fadf2bb906a8fb to your computer and use it in GitHub Desktop.
vimrc
This file contains 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
set nocompatible | |
set t_Co=256 | |
syntax on | |
set linespace=15 | |
set showmode | |
set nowrap | |
set tabstop=4 | |
set smarttab | |
set tags=tags | |
set softtabstop=4 | |
set expandtab | |
set shiftwidth=4 | |
set shiftround | |
set backspace=indent,eol,start | |
set autoindent | |
set copyindent | |
set number | |
set ignorecase | |
set smartcase | |
set timeout timeoutlen=200 ttimeoutlen=100 | |
set visualbell | |
set noerrorbells | |
set autowrite | |
set mouse=a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment