Last active
May 29, 2019 08:47
-
-
Save andykuszyk/c7f1cf77ec19cdaac03a238c9a85ba17 to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or 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
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 |
This file contains hidden or 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
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