Skip to content

Instantly share code, notes, and snippets.

@gastonambrogi
Created March 3, 2019 14:16
Show Gist options
  • Save gastonambrogi/c346416061cba3e9c6263a0e4bf4d962 to your computer and use it in GitHub Desktop.
Save gastonambrogi/c346416061cba3e9c6263a0e4bf4d962 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'crusoexia/vim-dracula'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
colorscheme dracula
set tabstop=2 " The width of a TAB is set to 4.
set shiftwidth=2 " Indents will have a width of 4
set softtabstop=2 " Sets the number of columns for a TAB
set expandtab " Expand TABs to spaces
set number
syntax on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment