Articles in the dotfile category

  1. "[Dotfile] .tmux.conf"

    # unbind all keys once config is reloaded
    unbind-key -a
    
    # set TERM to screen-256color in tmux
    set -g default-terminal "screen-256color"
    
    # reload config file
    bind r source-file ~/.tmux.conf; display 'config reloaded'
    
    # list current bind keys
    bind ? list-keys
    
    # detach client
    bind d detach-client
    
    # switch client
    bind p switch-client -p
    bind n …
  2. "[Dotfile] .vimrc"

    " === Vundle Options ===
    set nocompatible
    filetype off
    
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()
    " let Vundle manage Vundle
    Plugin 'gmarik/Vundle.vim'
    " plugin from http://vim-scripts.org/vim/scripts.html
    Plugin 'a.vim'
    Plugin 'taglist.vim'
    Plugin 'gtags.vim'
    " plugin from github repo
    Plugin 'godlygeek/tabular'
    Plugin 'plasticboy/vim-markdown …