Skip to content

Instantly share code, notes, and snippets.

@Logrus
Last active October 19, 2016 09:46
Show Gist options
  • Save Logrus/b17faff45320c75206e6 to your computer and use it in GitHub Desktop.
Save Logrus/b17faff45320c75206e6 to your computer and use it in GitHub Desktop.
vimconf
" Installing vundle, run:
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
" after, run in vim
" :PluginInstall
"
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'https://github.com/moll/vim-node.git'
Plugin 'flazz/vim-colorschemes'
Plugin 'mattn/emmet-vim'
Plugin 'gregsexton/MatchTag'
Plugin 'ervandew/supertab'
call vundle#end() " required
filetype plugin indent on " required
" :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
syntax on
set t_Co=256
color kalisi
set background=dark
set nu
set expandtab
set shiftwidth=2
set softtabstop=2
set guioptions-=T
set guioptions-=r
set go-=L
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment