-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
30 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[submodule "zsh/antigen"] | ||
path = zsh/antigen | ||
url = https://github.com/zsh-users/antigen.git | ||
[submodule "zsh/plugins/completions"] | ||
path = zsh/plugins/completions | ||
url = git://github.com/zsh-users/zsh-completions.git | ||
[submodule "zsh/antigen-hs"] | ||
path = zsh/antigen-hs | ||
url = git@github.com:Tarrasch/antigen-hs.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
{-# LANGUAGE ExtendedDefaultRules #-} | ||
module MyAntigen where | ||
|
||
import Antigen (AntigenConfiguration (..), bundle, antigen) | ||
import Shelly (shelly) | ||
|
||
bundles = | ||
[ bundle "Tarrasch/zsh-functional" | ||
, bundle "Tarrasch/zsh-bd" | ||
, bundle "Tarrasch/zsh-command-not-found" | ||
, bundle "Tarrasch/zsh-colors" | ||
, bundle "Tarrasch/zsh-autoenv" | ||
, bundle "Tarrasch/zsh-i-know" | ||
, bundle "Tarrasch/pure" | ||
, bundle "Tarrasch/zsh-mcd" | ||
, bundle "zsh-users/zsh-syntax-highlighting" | ||
, bundle "zsh-users/zsh-history-substring-search" | ||
] | ||
|
||
config = AntigenConfiguration bundles | ||
|
||
main :: IO () | ||
main = shelly $ antigen config |
Submodule antigen
deleted from
b5e1d7
Submodule antigen-hs
added at
ddda46
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters