Skip to content

tnitsche/vimfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation:

  git clone https://github.com/tnitsche/vimfiles.git ~/.vim

Create symlinks/files:

  cd .vim/
  rake install
  git submodule update --init

See http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/
for details

If you get errors while pushing, check your .git/config. Remote origin has to be

  [remote "origin"]
  fetch = +refs/heads/*:refs/remotes/origin/*
  url = git@github.com:tnitsche/vimfiles.git

Adding new plugins:

  cd ~/.vim
  git submodule add https://github.com/vim-scripts/openssl.vim.git bundle/openssl
  git add .
  git commit -m "Install openssl.vim bundle as a submodule."

VIM plugin notes

  * taglist: 
  
    do something like 

    ctags --exclude=.git                         \
      --exclude=log                              \
      --exclude=app/views                        \
      --exclude=public/export                    \
      --exclude=public/export.dev                \
      --exclude=public/javascripts               \
      --exclude=public/javascripts_pm            \
      --exclude=public/stylesheets               \
      --exclude=vendor/plugins/polonium          \
      --exclude=vendor/plugins/asset_packager    \
      --exclude=public/position_pages            \
      --exclude=db/enumerations/common           \
      -R .
    
    to build a valid taglist for your Rails project (your exclude list may vary).

  * command-t:

    read :he command-t install notes and requirements (ruby, rake etc.). After cloning
    you have to do

    cd ~/.vim/bundle/command-t && rake make
    

About

My personal vim files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published