Created
August 26, 2019 17:42
-
-
Save menon92/479c5ebeb357804cfce255a5e58a4f24 to your computer and use it in GitHub Desktop.
My vim setup
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
" Don't try to be vi compatible | |
set nocompatible | |
" Turn on syntax highlighting | |
syntax on | |
" Show line numbers | |
set number | |
" Encoding | |
set encoding=utf-8 | |
" enable copy paste using mouse | |
set mouse=r | |
" enable drag windows | |
set mouse=n | |
" set tab size | |
set tabstop=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment