diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-07-15 13:51:20 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-07-15 13:51:20 +0200 |
commit | a6828d1d44c752e813b7c6395329430d9f0eee99 (patch) | |
tree | a9ed0e4ad589c1e261f46e1bfbfa51066397d682 | |
parent | 8a10c634e3a3f26dc38f5660de0c6aacc6f1a0d1 (diff) |
Add configuration file for grm
-rw-r--r-- | discours | 4 | ||||
-rw-r--r-- | repos.zsh | 41 | ||||
-rw-r--r-- | tmuxlinerc | 29 | ||||
-rw-r--r-- | zshrc | 6 |
4 files changed, 50 insertions, 30 deletions
diff --git a/discours b/discours new file mode 100644 index 0000000..107952b --- /dev/null +++ b/discours @@ -0,0 +1,4 @@ +Chers amis, + +nous sommes reunis aujourd'hui pour celebrer le mariage de Catherine et Victor. +Nous allons commencer par quelques annecdote que nous avons eu diff --git a/repos.zsh b/repos.zsh new file mode 100644 index 0000000..bb5513f --- /dev/null +++ b/repos.zsh @@ -0,0 +1,41 @@ +home=/home/urbain +vimdir=$home/dotfiles + +declare -A repodirs + +# General purpose +repodirs[alols/xcape]=/home/urbain/xcape +repodirs[icholy/ttygif]=/home/urbain/github/ttygif + +# Solarized +# repodirs[Anthony25/gnome-terminal-colors-solarized]=/home/urbain/github/gnome-terminal-colors-solarized +repodirs[altercation/mutt-colors-solarized]=/home/urbain/github/mutt-colors-solarized +repodirs[seebi/dircolors-solarized]=/home/urbain/github/dircolors-solarized + +# Mp plugins +repodirs[uvaes/fzf-marks]=/home/urbain/github/fzf-marks +# repodirs[uvaes/grm]=/home/urbain/github/grm + +# fzf-related +# repodirs[atweiden/fzf-extras]=/home/urbain/github/fzf-extras +repodirs[junegunn/fzf]=/home/urbain/.fzf + +# Plugin managers +repodirs[tmux-plugins/tpm]=/home/urbain/.tmux/plugins/tpm +repodirs[junegunn/vim-plug]=/home/urbain/.vim/vim-plug +repodirs[tarjoilija/zgen]=/home/urbain/.zgen + +function after_vimplug { + cd .. + rm -rf autoload + mkdir -p autoload + cd autoload + ln -s ../vim-plug/plug.vim; +} + +declare -A actions +actions[alols/xcape]='make' +actions[icholy/ttygif]='make' +actions[junegunn/fzf]='./install' +actions[rupa/z]='make' +actions[junegunn/vim-plug]='after_vimplug' diff --git a/tmuxlinerc b/tmuxlinerc deleted file mode 100644 index 5b7120a..0000000 --- a/tmuxlinerc +++ /dev/null @@ -1,29 +0,0 @@ -# This tmux statusbar config was created by tmuxline.vim -# on Sat, 25 Apr 2015 - -set -g status-bg "colour7" -set -g message-command-fg "colour7" -set -g status-justify "centre" -set -g status-left-length "100" -set -g status "on" -set -g pane-active-border-fg "colour11" -set -g message-bg "colour14" -set -g status-right-length "100" -set -g status-right-attr "none" -set -g message-fg "colour7" -set -g message-command-bg "colour14" -set -g status-attr "none" -set -g status-utf8 "on" -set -g pane-border-fg "colour14" -set -g status-left-attr "none" -setw -g window-status-fg "colour14" -setw -g window-status-attr "none" -setw -g window-status-activity-bg "colour7" -setw -g window-status-activity-attr "none" -setw -g window-status-activity-fg "colour11" -setw -g window-status-separator "" -setw -g window-status-bg "colour7" -set -g status-left "#[fg=colour7,bg=colour11,bold] #H #[fg=colour11,bg=colour14,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour14] #S #[fg=colour14,bg=colour7,nobold,nounderscore,noitalics]" -set -g status-right "#[fg=colour7,bg=colour7,nobold,nounderscore,noitalics]#[fg=colour14,bg=colour7] %R #[fg=colour14,bg=colour7,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour14] %a #[fg=colour11,bg=colour14,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour11] %Y " -setw -g window-status-format "#[fg=colour7,bg=colour7,nobold,nounderscore,noitalics]#[default] #W #[fg=colour7,bg=colour7,nobold,nounderscore,noitalics]" -setw -g window-status-current-format "#[fg=colour7,bg=colour14,nobold,nounderscore,noitalics]#[fg=colour7,bg=colour14] #W #[fg=colour14,bg=colour7,nobold,nounderscore,noitalics]" @@ -24,12 +24,15 @@ if ! zgen saved; then # zgen load sindresorhus/pure zgen oh-my-zsh themes/eastwood + # My plugins + zgen load uvaes/fzf-marks + zgen load uvaes/grm + # Other plugins zgen load rupa/z zgen load djui/alias-tips zgen load tarruda/zsh-autosuggestions zgen load Tarrasch/zsh-autoenv - zgen load uvaes/fzf-marks zgen load joel-porquet/zsh-dircolors-solarized # Save all to init script @@ -43,6 +46,7 @@ bindkey '^P' history-beginning-search-backward bindkey '^N' history-beginning-search-forward # Plugins configuration +REPOFILE="/home/urbain/dotfiles/repos.zsh" # Autosuggestion AUTOSUGGESTION_HIGHLIGHT_COLOR='fg=6' |