Clone dotfiles repository where you want.
Run very basic scripts zsh_installer.sh & vim_installer (or nvim_installer.sh).
vim or nvim script will install tmux conf.
- These script add support for Byobu (Tmux wrapper). Byobu can be easily installed then launch
byobu-ctrl-aand select Screen mode, launchbyobu-select-backendand select tmux.
# Install ZSH
$ chsh -s /bin/zsh
$ curl -L http://install.ohmyz.sh | sh
$ dotfiles/zsh_install.sh
# Install Vim & TMux
$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/vundle
$ dotfiles/vim_install.sh
$ vim +BundleInstall
- There are already some fonts in the font folder
- https://github.com/Lokaltog/powerline-fonts
- https://github.com/scotu/ubuntu-mono-powerline
Go to vim-instant-markdown repository and see installation dependencies.
For this feature, install rcodetools gem:
$ gem install rcodetools$ sudo apt-get install exuberant-ctags- Using ctags in Vim
- Using ctags in vim on RoR (shortcuts)
- Configuration in
vim/rcfiles/vim-taglist - Actually, it's only setted for Ruby on Rails
- Add in
~/.gorcthe following lines:
# Export packages directory (libraries)
export GOPATH="${HOME}/workspaces/golang"
export PATH=$PATH:$GOPATH/bin
alias gi='goop install'
alias gg='goop go'
alias ggr='goop go run'
alias ge='goop exec'