As configured in my dotfiles.
start new:
tmux
start new with session name:
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # delay time | |
| set -sg escape-time 1 | |
| # 256 colors | |
| set -g default-terminal "screen-256color" | |
| # a mouse | |
| set -g mode-mouse on | |
| setw -g mouse-select-window on | |
| setw -g mouse-select-pane on |
| { | |
| // JSHint Default Configuration File (as on JSHint website) | |
| // See http://jshint.com/docs/ for more details | |
| "maxerr" : 50, // {int} Maximum error before stopping | |
| // Enforcing | |
| "bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.) | |
| "camelcase" : false, // true: Identifiers must be in camelCase | |
| "curly" : true, // true: Require {} for every new block or scope |
| function proxy(){ | |
| var proxyFactory = function(){ | |
| //The wrapped function to call. | |
| var fnToCall = arguments.length === 2 ? arguments[0][arguments[1]] : arguments[0]; | |
| //A counter used to note how many times proxy has been called. | |
| var xCalled = 0; |
| function proxy(){ | |
| var proxyFactory = function(){ | |
| var fnToCall = arguments.length === 2 ? arguments[0][arguments[1]] : arguments[0]; | |
| var fn = function(){ | |
| var args = [].slice.call(arguments); | |
| fnToCall.apply(this, args); | |
| }; | |
| return fn; |
| au! | |
| " | |
| " pathogen settings | |
| " | |
| call pathogen#infect() | |
| " | |
| " always show the status line |
| { | |
| "folders": | |
| [ | |
| { | |
| "follow_symlinks": true, | |
| "path": "." | |
| } | |
| ], | |
| "ternjs": { | |
| "libs": ["jquery"], |
| { | |
| "auto_complete": true, | |
| "auto_complete_commit_on_tab": true, | |
| "auto_complete_triggers": | |
| [ | |
| { | |
| "characters": "<", | |
| "selector": "text.html" | |
| }, | |
| { |
| (function(){ | |
| 'use strict'; | |
| window.define = function define(){ | |
| (arguments[arguments.length - 1])(); | |
| }; | |
| }()); |
| { | |
| "name": "application-name", | |
| "version": "0.0.1", | |
| "private": true, | |
| "dependencies": { | |
| "express": "~3.2.5", | |
| "ejs": "~0.8.4", | |
| "less-middleware": "*", | |
| "express-ejs-layouts": "~0.3.1" | |
| }, |