Skip to content

Instantly share code, notes, and snippets.

@andykuszyk
Last active May 29, 2019 08:47
Show Gist options
  • Save andykuszyk/c7f1cf77ec19cdaac03a238c9a85ba17 to your computer and use it in GitHub Desktop.
Save andykuszyk/c7f1cf77ec19cdaac03a238c9a85ba17 to your computer and use it in GitHub Desktop.
vimrc
set tabstop=4 shiftwidth=4 expandtab
set number
autocmd Filetype go setlocal ts=4 sw=4 sts=0 noexpandtab
set nocompatible
filetype off
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'
call vundle#end() " required
filetype plugin indent on " required
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
# update .vimrc
vim
:PluginInstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment