Skip to content

Instantly share code, notes, and snippets.

@wh0am1-dev
Created January 10, 2020 15:39
Show Gist options
  • Save wh0am1-dev/7e17f95112c4ef43259a8c726b99231f to your computer and use it in GitHub Desktop.
Save wh0am1-dev/7e17f95112c4ef43259a8c726b99231f to your computer and use it in GitHub Desktop.
.vimrc
set number
set linebreak
set showbreak=+++
set textwidth=100
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set expandtab
set shiftwidth=2
set smartindent
set smarttab
set softtabstop=2
set ruler
set undolevels=1000
set backspace=indent,eol,start
call plug#begin('~/.vim/plugged')
Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment