From 106ca2094072a516a8df820d9c31a9be6bbbc75c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 20 Oct 2017 23:37:07 +0200 Subject: feat(dotfiles): Add fish-shell & tmux configuration --- dotfiles/config.fish | 27 +++++++++++++++++++++++++++ dotfiles/tmux.conf | 14 ++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 dotfiles/config.fish create mode 100644 dotfiles/tmux.conf (limited to 'dotfiles') diff --git a/dotfiles/config.fish b/dotfiles/config.fish new file mode 100644 index 000000000000..55809a2ab6a0 --- /dev/null +++ b/dotfiles/config.fish @@ -0,0 +1,27 @@ +# Configure classic prompt +set fish_color_user --bold blue +set fish_color_cwd --bold white +#set __fish_git_prompt_color green +set __fish_git_prompt_showcolorhints yes +set __fish_git_prompt_color_prefix purple +set __fish_git_prompt_color_suffix purple + +# Fish configuration +set fish_greeting "" +set PATH $HOME/.local/bin $GOPATH/bin $PATH + +# Editor configuration +set -gx EDITOR "emacsclient" +set -gx ALTERNATE_EDITOR "emacs -q -nw" +set -gx VISUAL "emacsclient" + +# Miscellaneous +eval (direnv hook fish) + +# Useful command aliases +alias gpr 'git pull --rebase' +alias gco 'git checkout' +alias gf 'git fetch' +alias gap 'git add -p' +alias pbcopy 'xclip -selection clipboard' +alias edit 'emacsclient -n' diff --git a/dotfiles/tmux.conf b/dotfiles/tmux.conf new file mode 100644 index 000000000000..6c20ae0370b2 --- /dev/null +++ b/dotfiles/tmux.conf @@ -0,0 +1,14 @@ +set -g status off +set -gw mode-keys emacs +setw -g mouse on + +# Correctly set window titles +set -g set-titles on +set -g set-titles-string "#W (#T)" + +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-yank' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/.tmux/plugins/tpm/tpm' -- cgit 1.4.1