Skip to content

Instantly share code, notes, and snippets.

View mineroot's full-sized avatar
🏠
Working from home

mineroot

🏠
Working from home
View GitHub Profile
@mineroot
mineroot / config.fish
Last active February 26, 2016 14:59
Config for Linux Shell Fish. Contains short-cuts for frequently used commands. Location: ~/.config/fish/config.fish
# A Powerline like prompt for Bash, ZSH and Fish
function fish_prompt
~/powerline-shell.py $status --shell bare ^/dev/null
end
# list of files
function l
ls --human-readable -l -A
end
@mineroot
mineroot / .tmux.conf
Created February 26, 2016 15:00
.tmux.conf Location: ~/.tmux.conf
set -g default-shell /usr/bin/fish
set -g status off
@mineroot
mineroot / .tmux-start
Created February 26, 2016 15:11
tmux with 3 panes. Start config
#!/bin/sh
#
# change all 'somedir' and 'somecommand' entries below to directory you need and command you need accordingly
# do not forget make file executable: chmod +x .tmux-start
# run your terminal with this file e.g. for Guake: guake -e ~/.tmux-start
SESSION_NAME="dev"
cd ~/somedir
tmux has-session -t ${SESSION_NAME}