This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the prefix to be "ctrl+a" | |
unbind C-b | |
set -g prefix C-a | |
setw -g mode-keys vi | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set editing-mode vi | |
set keymap vi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------- | |
# Aliases | |
#---------- | |
alias ls="ls -F" | |
alias pd="pushd" | |
alias bd="popd" | |
alias less="less -N" | |
alias rsync="rsync -a --verbose --partial --progress" | |
alias make="make --warn-undefined-variables" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"---------- | |
" General | |
"---------- | |
set nocompatible "stops vim from behaving in a strongly vi -compatible way. Place at the start of vimrc file as it can affect lots of other options which you may want to override. | |
filetype plugin on "turns plugin on depending on filetype | |
filetype indent on "special identation for certain filetypes | |
" Set to auto read when a file is changed from the outside | |
set autoread |