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-a
and select Screen mode, launchbyobu-select-backend
and 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
~/.gorc
the 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'