Created
October 22, 2020 00:30
-
-
Save ceme/7b3703a4e618803c2375a6d9fa240c24 to your computer and use it in GitHub Desktop.
Just a simple vimrc
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
" Use Vim settings, rather then Vi settings (much better!). | |
set nocompatible | |
" Turn on the verboseness to see everything vim is doing. | |
"set verbose=9 | |
" allow backspacing over everything in insert mode | |
set backspace=indent,eol,start | |
" I like 4 spaces for indenting | |
set shiftwidth=4 | |
" I like 4 stops | |
set tabstop=4 | |
" Spaces instead of tabs | |
set expandtab | |
" Always set auto indenting on | |
set autoindent | |
" select when using the mouse | |
set selectmode=mouse | |
" set the commandheight | |
set cmdheight=2 | |
" show position | |
set ruler | |
" syntax color scheme | |
colo desert | |
" syntax color | |
syntax on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment