This commit is contained in:
Loic Nageleisen 2016-11-30 10:27:30 +01:00
parent df62e466bf
commit d872ea4318
6 changed files with 2464 additions and 56 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
*.swp
tmp/
.netrwhist
bundle/*
plugged/*

2415
autoload/plug.vim Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,54 +0,0 @@
set nocompatible
set shell=bash
filetype on
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-sensible'
Bundle 'altercation/vim-colors-solarized'
Bundle 'jnurmine/Zenburn'
Bundle 'endel/vim-github-colorscheme'
Bundle 'flazz/vim-colorschemes'
Bundle 'lloeki/vim-one-colorschemes'
Bundle 'https://bitbucket.org/kisom/eink.vim.git'
Bundle 'robertmeta/nofrils'
Bundle 'tpope/vim-bundler'
Bundle 'tpope/vim-fugitive'
Bundle 'ciaranm/securemodelines'
Bundle 'kien/ctrlp.vim'
Bundle 'vim-airline/vim-airline'
Bundle 'vim-airline/vim-airline-themes'
Bundle 'scrooloose/nerdtree'
Bundle 'ervandew/supertab'
Bundle 'scrooloose/syntastic'
Bundle 'rking/ag.vim'
Bundle 'kchmck/vim-coffee-script'
Bundle 'vim-scripts/glsl.vim'
Bundle 'fatih/vim-go'
Bundle 'groenewege/vim-less'
Bundle 'tpope/vim-markdown'
Bundle 'slim-template/vim-slim'
Bundle 'jboyens/vim-protobuf'
Bundle 'dag/vim-fish'
Bundle 'vim-scripts/rfc-syntax'
Bundle 'rust-lang/rust.vim'
Bundle 'vim-scripts/argtextobj.vim'
Bundle 'michaeljsmith/vim-indent-object'
Bundle 'tpope/vim-repeat'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-eunuch'
Bundle 'tpope/vim-unimpaired'
filetype plugin indent on
syntax on

47
plugged.vim Normal file
View file

@ -0,0 +1,47 @@
call plug#begin('~/.vim/plugged')
Plug 'gmarik/vundle'
Plug 'tpope/vim-sensible'
Plug 'altercation/vim-colors-solarized'
Plug 'jnurmine/Zenburn'
Plug 'endel/vim-github-colorscheme'
Plug 'flazz/vim-colorschemes'
Plug 'lloeki/vim-one-colorschemes'
Plug 'https://bitbucket.org/kisom/eink.vim.git'
Plug 'robertmeta/nofrils'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-fugitive'
Plug 'ciaranm/securemodelines'
Plug 'kien/ctrlp.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'scrooloose/nerdtree'
Plug 'ervandew/supertab'
Plug 'scrooloose/syntastic'
Plug 'rking/ag.vim'
Plug 'kchmck/vim-coffee-script'
Plug 'vim-scripts/glsl.vim'
Plug 'fatih/vim-go'
Plug 'groenewege/vim-less'
Plug 'tpope/vim-markdown'
Plug 'slim-template/vim-slim'
Plug 'jboyens/vim-protobuf'
Plug 'dag/vim-fish'
Plug 'vim-scripts/rfc-syntax'
Plug 'rust-lang/rust.vim'
Plug 'vim-scripts/argtextobj.vim'
Plug 'michaeljsmith/vim-indent-object'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-unimpaired'
call plug#end()

2
vimrc
View file

@ -1,7 +1,7 @@
" lloeki's vimrc
"bundle loading via vundle
source ~/.vim/bundles.vim
source ~/.vim/plugged.vim
scriptencoding "utf-8"