Last active
March 1, 2017 20:11
-
-
Save adscriven/8bc1c58047af84b36247cbbe30732d99 to your computer and use it in GitHub Desktop.
Vim settings: a basic starting point.
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
" basicsettings.vim -- a starting point for configuring Vim. | |
" Adjust 'shiftwidth' and 'expandtab' to taste. | |
" Don't copy and paste this file without reading the documentation for | |
" all the options, e.g. :help 'shiftwidth', and understanding what they | |
" do. | |
" Indentation | |
set autoindent backspace=2 shiftwidth=4 softtabstop=-1 expandtab shiftround | |
" Feedback and searching | |
set showmode showmatch report=0 incsearch ignorecase smartcase | |
" Command line | |
set wildmenu history=999 viminfo+=n~/.viminfo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment