aboutsummaryrefslogtreecommitdiff
path: root/plugin.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.go')
-rw-r--r--plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin.go b/plugin.go
index 09b0e2b..51b67b5 100644
--- a/plugin.go
+++ b/plugin.go
@@ -48,7 +48,7 @@ func openPlugins() {
}
for _, pl := range dir {
- if pl.IsDir() {
+ if pl.IsDir() && !Conf().NoAutoPlugins {
plPath := path + "/" + pl.Name()
wd, err := os.Getwd()