Skip to content

Instantly share code, notes, and snippets.

@crsayen
Created November 3, 2020 21:20
Show Gist options
  • Save crsayen/a528d7187ffb894bce0485a7291e1070 to your computer and use it in GitHub Desktop.
Save crsayen/a528d7187ffb894bce0485a7291e1070 to your computer and use it in GitHub Desktop.
packadd! dracula
syntax enable
colorscheme dracula
packadd! rust.vim
set expandtab
set autoindent
set shiftround
set shiftwidth=2
set smarttab
set tabstop=4
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
" **********************************
" Vim-Plug
" **********************************
call plug#begin('~/.vim/plugged')
call plug#end()
" **********************************
" Vundle
" **********************************
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'frazrepo/vim-rainbow'
Plugin 'jiangmiao/auto-pairs'
Plugin 'fatih/vim-go'
call vundle#end() " required
filetype plugin indent on " required
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment