From 718178848cc8299539c0fbc3dc720bce5b7dabc2 Mon Sep 17 00:00:00 2001 From: LFDM <1986gh@gmail.com> Date: Fri, 3 Jan 2014 22:01:47 +0100 Subject: [PATCH] Updated custom dir example hierarchy. --- custom/example.zsh | 5 ----- custom/example/example.plugin.zsh | 2 -- custom/plugins/custom_plugin/custom_plugin.plugin.zsh | 4 ++++ custom/themes/custom_theme.zsh-theme | 4 ++++ 4 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 custom/example.zsh delete mode 100644 custom/example/example.plugin.zsh create mode 100644 custom/plugins/custom_plugin/custom_plugin.plugin.zsh create mode 100644 custom/themes/custom_theme.zsh-theme diff --git a/custom/example.zsh b/custom/example.zsh deleted file mode 100644 index 28ffcae25..000000000 --- a/custom/example.zsh +++ /dev/null @@ -1,5 +0,0 @@ -# Add yourself some shortcuts to projects you often work on -# Example: -# -# brainstormr=/Users/robbyrussell/Projects/development/planetargon/brainstormr -# \ No newline at end of file diff --git a/custom/example/example.plugin.zsh b/custom/example/example.plugin.zsh deleted file mode 100644 index 406f27445..000000000 --- a/custom/example/example.plugin.zsh +++ /dev/null @@ -1,2 +0,0 @@ -# Add your own custom plugins in the custom/plugins directory. Plugins placed -# here will override ones with the same name in the main plugins directory. diff --git a/custom/plugins/custom_plugin/custom_plugin.plugin.zsh b/custom/plugins/custom_plugin/custom_plugin.plugin.zsh new file mode 100644 index 000000000..eebdd90f3 --- /dev/null +++ b/custom/plugins/custom_plugin/custom_plugin.plugin.zsh @@ -0,0 +1,4 @@ +# This is an example file to demonstrate the use of custom plugins. +# It would be loaded if you add it to the plugins Array in your .zshrc file: +# +# plugins=(custom_plugin) diff --git a/custom/themes/custom_theme.zsh-theme b/custom/themes/custom_theme.zsh-theme new file mode 100644 index 000000000..af9fbbeb9 --- /dev/null +++ b/custom/themes/custom_theme.zsh-theme @@ -0,0 +1,4 @@ +# This is an example file for a customized theme. +# +# Place your themes in this folder and enable theme +# by setting ZSH_THEME in your .zshrc file.