Create a symlink to .tmux.conf
ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf
Create a symlink to .vim folder to load plugins and color scheme
ln -s ~/dotfiles/.vim ~/.vim
NOTE: need to use the built-in packages vim functionality
- install pathogen
- source configuration
- add color scheme
Modify current .vimrc
source ~/dotfiles/vim/.vimrc
Modify current .zshrc
source ~/dotfiles/.zshrc
Install antigen manage zshrc plugins
Install last version of 2.7 series ([Python 2.7.8] (http://www.python.org/download/releases/2.7.8/) at the time of this writing). Make sure that you pick correct version of Python to match the architecture of Vim. For example, if you installed Vim using the default Windows installer, you will need to install the x86 (32 bit!) version of Python.
Verify that Python is working inside Vim with
:echo has('python')git clone git@github.com:josephvano/dotfiles.git
cd dotfiles
git submodule init
git submodule update
This assumes you are using pathogen
git submodule add git://[path] vim/.vim/bundle/[plugin]
git submodule init
git submodule update
The vim plugin [vim-dispatch] (https://github.com/tpope/vim-dispatch) is needed to make Omnisharp start the server automatically and for running asynchronous builds. Use your favourite way to install it.
The vim plugin [syntastic] (https://github.com/scrooloose/syntastic) is needed for displaying code issues and syntax errors. Use your favourite way to install it.
CtrlP or unite.vim is needed if you want to use the Code Actions, Find Type and Find Symbol features.
If you have installed both, you can choose one by g:OmniSharp_selector_ui variable.
let g:OmniSharp_selector_ui = 'unite' " Use unite.vim
let g:OmniSharp_selector_ui = 'ctrlp' " Use ctrlp.vimI had to specify the path of the snippets folder in the .vimrc folder explicitly.
If you set it up in your $HOME folder, it should work out of the box.
let g:snippets_dir = "$HOME/dotfiles/vim/.vim/bundle/snipmate/snippets"
I installed Perl on my machine and Ack
cpan App::Ack
Couldn't get pathogen to detect and install plugin. I just had to do the manual way of copying html folder to the ftplugin folder.
Another caveat is I have python 2.5 on my machine. I tried it with Python 3.x and it was not working correctly.
- Rename your _vimrc to .vimrc
- Rename your vimfiles to .vim
Modern windows vim installation understands .vimrc vs _vimrc
https://github.com/Quramy/tsuquyomi
npm install -g typescript