summaryrefslogtreecommitdiff
path: root/.zsh/zsh-plugins
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2015-08-08 20:08:42 +0200
committerUrbain Vaes <urbain@vaes.uk>2015-08-08 20:08:42 +0200
commit8df9472e0cdbab0d12211c2bc77918e8f515c409 (patch)
treef420b705adfec42bb33191c44c8fe252fca0f785 /.zsh/zsh-plugins
parentb8a9b07b741cddbf6e0476e70c94aa186d62b6ae (diff)
Improve installation and organization
Diffstat (limited to '.zsh/zsh-plugins')
-rw-r--r--.zsh/zsh-plugins59
1 files changed, 59 insertions, 0 deletions
diff --git a/.zsh/zsh-plugins b/.zsh/zsh-plugins
new file mode 100644
index 0000000..26b5726
--- /dev/null
+++ b/.zsh/zsh-plugins
@@ -0,0 +1,59 @@
+# Load zgen
+source "/home/urbain/.zgen/zgen.zsh"
+
+# Load plugins
+if ! zgen saved; then
+
+ echo "Creating a zgen save"
+
+ # Load oh-my-zsh framework
+ zgen oh-my-zsh
+
+ # Oh-my-zsh plugins
+ zgen oh-my-zsh plugins/git
+ zgen oh-my-zsh plugins/vi-mode
+ zgen oh-my-zsh plugins/ubuntu
+ zgen oh-my-zsh plugins/tmux
+ zgen oh-my-zsh plugins/themes
+
+ # zsh-users plugins
+ zgen load zsh-users/zsh-completions src
+ zgen load zsh-users/zsh-syntax-highlighting
+
+ # Appearance
+ 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 joel-porquet/zsh-dircolors-solarized
+
+ # Save all to init script
+ zgen save
+fi
+
+# Plugin configuration
+
+# Autosuggestion
+{
+ # Environment variables for plugins
+ AUTOSUGGESTION_HIGHLIGHT_COLOR='fg=6'
+
+ zle-line-init() {
+ zle autosuggest-start
+ }
+ zle -N zle-line-init
+
+ bindkey '^y' autosuggest-execute-suggestion
+}
+
+# GRM
+{
+ REPOFILE=/home/urbain/.grmrc
+}