Last active
November 5, 2018 03:48
-
-
Save 0xTowel/f8501a77e101a5bc7ee2e39dc30777f5 to your computer and use it in GitHub Desktop.
A bare-minimum, portable vimrc. Not pretty or fancy.
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
" My bare-minimum, portable vimrc | |
inoremap <special> jk <ESC> | |
inoremap <special> kj <ESC> | |
set clipboard^=unnamedplus | |
set relativenumber | |
set number | |
set backspace=eol,start,indent | |
set whichwrap+=<,>,h,l | |
set ignorecase | |
set smartcase | |
set incsearch | |
set lazyredraw | |
set showmatch | |
set mat=2 | |
set ffs=unix,dos,mac | |
set nobackup | |
set nowb | |
set noswapfile | |
set expandtab | |
set smarttab | |
set shiftwidth=4 | |
set tabstop=4 | |
set nowrap | |
map <space> / | |
map <c-space> ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment