diff options
-rw-r--r-- | Hyperterm/hyper.js (renamed from Hyperterm/.hyper.js) | 0 | ||||
-rw-r--r-- | bash/bashrc | 1 | ||||
-rwxr-xr-x | bin/install.sh | 4 | ||||
-rw-r--r-- | tmux.conf | 14 | ||||
-rw-r--r-- | vim/vimrc (renamed from vim/_vimrc) | 0 |
5 files changed, 19 insertions, 0 deletions
diff --git a/Hyperterm/.hyper.js b/Hyperterm/hyper.js index 169b16d..169b16d 100644 --- a/Hyperterm/.hyper.js +++ b/Hyperterm/hyper.js diff --git a/bash/bashrc b/bash/bashrc new file mode 100644 index 0000000..36357ee --- /dev/null +++ b/bash/bashrc @@ -0,0 +1 @@ +alias lamp='curl -i -H Accept: application/json -H Content-Type: application/json -X GET http://192.168.10.191/j?lamp=toggle' diff --git a/bin/install.sh b/bin/install.sh new file mode 100755 index 0000000..14fd058 --- /dev/null +++ b/bin/install.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cp tmux/tmux.conf ~/.tmux.conf +cp bash/bashrc ~/.bashrc diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..3b9f619 --- /dev/null +++ b/tmux.conf @@ -0,0 +1,14 @@ +unbind C-b +set -g prefix C-a + +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D + +setw -g monitor-activity on +set -g visual-activity on + +set-window-option -g window-status-current-bg yellow + + |