Skip to content

Instantly share code, notes, and snippets.

@bhaskar253
Created June 21, 2023 02:45
Show Gist options
  • Save bhaskar253/7d07760d0492dd477e61d9845fdfc786 to your computer and use it in GitHub Desktop.
Save bhaskar253/7d07760d0492dd477e61d9845fdfc786 to your computer and use it in GitHub Desktop.
my vim config
" 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