Last active
October 19, 2016 09:46
-
-
Save Logrus/b17faff45320c75206e6 to your computer and use it in GitHub Desktop.
vimconf
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
" 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