Skip to content

XiaofangJ/dotvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Configuration file for vim

Requirement

  • ack (for ack.vim)

Mac install brew install ack

Ubuntu install sudo apt-get install ack-grep

  • Python related Install required python library
pip install --upgrade pep8
pip install --upgrade rope
pip install --upgrade pyflakes

Plugins list

mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

Add to .vimrc

execute pathogen#infect()
syntax on
filetype plugin indent on
cd ~/.vim/bundle
git clone https://github.com/tpope/vim-fugitive.git
vim -u NONE -c "helptags vim-fugitive/doc" -c q
git clone https://github.com/tpope/vim-surround.git
git clone https://github.com/tpope/vim-repeat.git
git clone https://github.com/tpope/vim-abolish.git
git clone https://github.com/godlygeek/tabular.git
git clone https://github.com/SirVer/ultisnips.git

Add to .vimrc

" Track the engine.
Plugin 'SirVer/ultisnips'

" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'

" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"

" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"
git clone https://github.com/tomtom/tlib_vim.git
git clone https://github.com/MarcWeber/vim-addon-mw-utils.git
git clone https://github.com/honza/vim-snippets.git
git clone https://github.com/scrooloose/nerdtree.git
git clone https://github.com/vim-scripts/AutoComplPop.git
git clone https://github.com/mileszs/ack.vim.git

Python related

  • pydoc
git clone https://github.com/fs111/pydoc.vim.git
  • flake8
git clone https://github.com/nvie/vim-flake8.git
  • ropevim
git clone https://github.com/python-rope/ropevim

Bioinformatic related

  • vim-bio
git clone https://github.com/XiaofangJ/vim-bio.git 

How to used this plugins?

About

vim configure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published