Created
June 21, 2023 02:45
-
-
Save bhaskar253/7d07760d0492dd477e61d9845fdfc786 to your computer and use it in GitHub Desktop.
my vim config
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
" Turn on syntax highlighting | |
syntax on | |
" Set default tab space to 2 | |
set ts=4 | |
"set sts=4 | |
"set sw=4 | |
" Convert tabs to spaces | |
"set et | |
" Show line numbers | |
set number | |
" Enable searching while typing | |
set incsearch | |
" Enable mouse support | |
set mouse+=a | |
" Disable audible bell | |
set noerrorbells visualbell t_vb= | |
" Enable smart search | |
set ignorecase | |
set smartcase | |
" Make backspace behave properly | |
set backspace=indent,eol,start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment