Quellcode durchsuchen

Added VIM configuration files

tags/original
Bryan Miller vor 6 Jahren
Ursprung
Commit
82820a84c5
2 geänderte Dateien mit 63 neuen und 0 gelöschten Zeilen
  1. +33
    -0
      vim/.vimrc
  2. +30
    -0
      vim/plugins.vim

+ 33
- 0
vim/.vimrc Datei anzeigen

@@ -0,0 +1,33 @@
so ~/.vim/plugins.vim

colorscheme zenburn

if exists('$SHELL')
set shell=$SHELL
else
set shell=/bin/sh
endif

" session management
let g:session_directory = "~/.vim/session"
let g:session_autoload = "no"
let g:session_autosave = "no"
let g:session_command_aliases = 1

" Configurations for NERDTree Plugin.
map <C-o> :NERDTreeToggle<CR>
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif

" ---------------------------------------------------
" Core configuration options...
" ---------------------------------------------------

" I like syntax highlighting
syntax enable

" Always spaces for tabs. Two spaces should be nice :)
set expandtab
set shiftwidth=2
set softtabstop=2



+ 30
- 0
vim/plugins.vim Datei anzeigen

@@ -0,0 +1,30 @@
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'
Plugin 'scrooloose/nerdtree'
Plugin 'airblade/vim-gitgutter'
Plugin 'bf4/vim-dark_eyes'
Plugin 'jnurmine/Zenburn'

" 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

Laden…
Abbrechen
Speichern