Skip to content

Instantly share code, notes, and snippets.

@rlewicki
Created September 13, 2017 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlewicki/75ba6d67af485405864e0c23b3ef7f7f to your computer and use it in GitHub Desktop.
Save rlewicki/75ba6d67af485405864e0c23b3ef7f7f to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
set nocompatible
set nobackup
set ruler
set encoding=utf-8
set guifont=iosevka:h14
syntax enable
colorscheme base16-default-dark
behave mswin
set number
set shiftwidth=4
set tabstop=4
set title
set autoindent
set autowrite
set smarttab
set backspace=indent,eol,start
" set the runtime path to include Vundle and initialize
set rtp+=$HOME/.vim/bundle/Vundle.vim
call vundle#begin('$HOME/.vim/bundle/')
" 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 'valloric/youcompleteme'
Plugin 'bling/vim-airline'
Plugin 'chriskempson/base16-vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment