Created
November 3, 2020 21:20
-
-
Save crsayen/a528d7187ffb894bce0485a7291e1070 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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