Skip to content

Instantly share code, notes, and snippets.

View mayurs142's full-sized avatar
:electron:

Mayur Sinha mayurs142

:electron:
  • NJ
View GitHub Profile
@mayurs142
mayurs142 / .vimrc
Last active April 9, 2022 16:46
vim settings for YAML
set tabstop=2 # tab stop - set tab width
set shiftwidth=2 # shift width
set sts=2 # soft tab stop
set et # expandtab - tabs to spaces
set ruler # ruler for cloumn and line number
set nu # line numbers
syntax on # syntax highlighting
filetype indent on # automatic indenting for detected filetype
filetype plugin on # enable plugins and load plugin for the detected file type
set backspace=indent,eol,start # allow backspace over indention, line breaks and insertion start