├── .gitignore ├── .gitmodules ├── .spacemacs ├── Makefile ├── README.md ├── cb-agda ├── funcs.el └── packages.el ├── cb-autoinsert └── packages.el ├── cb-bootstrap.el ├── cb-calc └── packages.el ├── cb-circe ├── local │ └── circe-show-channels │ │ └── circe-show-channels.el └── packages.el ├── cb-coffeescript └── packages.el ├── cb-company └── packages.el ├── cb-core ├── config.el ├── keybindings.el ├── local │ ├── case │ │ ├── README.md │ │ └── case.el │ ├── cb-buffers │ │ └── cb-buffers.el │ ├── cb-core-rename-file-and-buffer │ │ └── cb-core-rename-file-and-buffer.el │ ├── cb-exit-emacs │ │ └── cb-exit-emacs.el │ ├── cb-font-lock-replace-match │ │ └── cb-font-lock-replace-match.el │ ├── cb-generate-password │ │ └── cb-generate-password.el │ ├── cb-helm-emoticons │ │ └── cb-helm-emoticons.el │ ├── cb-ligatures │ │ └── cb-ligatures.el │ ├── cb-macros │ │ └── cb-macros.el │ ├── cb-remap-face │ │ └── cb-remap-face.el │ ├── cb-rotate-window-split │ │ └── cb-rotate-window-split.el │ ├── cb-subr-x │ │ └── cb-subr-x.el │ ├── cb-transpose-line │ │ └── cb-transpose-line.el │ ├── create-layer-local-package │ │ └── create-layer-local-package.el │ ├── helm-http-status │ │ └── helm-http-status.el │ ├── indent-dwim │ │ └── indent-dwim.el │ ├── indirect-region │ │ └── indirect-region.el │ ├── insert-shebang │ │ └── insert-shebang.el │ ├── insert-timestamp │ │ └── insert-timestamp.el │ ├── insert-variable-value │ │ └── insert-variable-value.el │ ├── light-workgroups │ │ └── light-workgroups.el │ ├── locate-key-binding │ │ └── locate-key-binding.el │ ├── remove-line-breaks │ │ └── remove-line-breaks.el │ ├── replace-smart-quotes │ │ └── replace-smart-quotes.el │ └── smart-ops │ │ ├── .dir-locals.el │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Cask │ │ ├── Makefile │ │ ├── README.md │ │ ├── smart-ops-tests.el │ │ └── smart-ops.el └── packages.el ├── cb-cosmetic ├── local │ ├── cb-faces │ │ └── cb-faces.el │ └── lambda-mode │ │ └── lambda-mode.el └── packages.el ├── cb-cpp ├── funcs.el ├── local │ └── cpp-autoinsert │ │ └── cpp-autoinsert.el └── packages.el ├── cb-crontab └── packages.el ├── cb-diff ├── local │ └── ediff-trees │ │ └── ediff-trees.el └── packages.el ├── cb-elisp ├── local │ ├── cb-elisp-eval-dwim │ │ └── cb-elisp-eval-dwim.el │ ├── cb-elisp-meta-ret │ │ └── cb-elisp-meta-ret.el │ └── elisp-autoinsert │ │ └── elisp-autoinsert.el └── packages.el ├── cb-elm ├── local │ ├── elm-insert-exposing │ │ └── elm-insert-exposing.el │ └── elm-meta-ret │ │ └── elm-meta-ret.el └── packages.el ├── cb-eshell ├── local │ └── cb-eshell-prompt │ │ └── cb-eshell-prompt.el └── packages.el ├── cb-evil ├── local │ └── cb-evil-visual-defaults │ │ └── cb-evil-visual-defaults.el └── packages.el ├── cb-extempore ├── local │ └── extempore │ │ ├── extempore-minor.el │ │ └── extempore.el └── packages.el ├── cb-flycheck └── packages.el ├── cb-git ├── local │ ├── git-commit-jira-prefix │ │ └── git-commit-jira-prefix.el │ └── magit-browse-repo │ │ └── magit-browse-repo.el └── packages.el ├── cb-go ├── local │ ├── cb-go-flycheck-metalinter-unique-errors │ │ └── cb-go-flycheck-metalinter-unique-errors.el │ ├── cb-go-run │ │ └── cb-go-run.el │ └── cb-go-smart-ops │ │ └── cb-go-smart-ops.el └── packages.el ├── cb-groovy └── packages.el ├── cb-haskell ├── local │ ├── cb-haskell-alignment │ │ └── cb-haskell-alignment.el │ ├── cb-haskell-ctrl-c-ctrl-c │ │ └── cb-haskell-ctrl-c-ctrl-c.el │ ├── cb-haskell-meta-ret │ │ └── cb-haskell-meta-ret.el │ ├── cb-haskell-smart-ops │ │ └── cb-haskell-smart-ops.el │ ├── cb-stack-hoogle │ │ └── cb-stack-hoogle.el │ ├── ghc-dump │ │ └── ghc-dump.el │ ├── haskell-autoinsert │ │ └── haskell-autoinsert.el │ ├── haskell-flycheck-holes │ │ └── haskell-flycheck-holes.el │ ├── haskell-flyspell │ │ └── haskell-flyspell.el │ ├── haskell-ghc-opts │ │ └── haskell-ghc-opts.el │ ├── haskell-imports │ │ └── haskell-imports.el │ ├── haskell-pragmas │ │ └── haskell-pragmas.el │ └── haskell-ret │ │ └── haskell-ret.el └── packages.el ├── cb-ibuffer └── packages.el ├── cb-idris ├── config.el ├── funcs.el ├── local │ └── idris-autoinsert │ │ └── idris-autoinsert.el └── packages.el ├── cb-js ├── local │ ├── cb-emmet-tolerant-expansion │ │ └── cb-emmet-tolerant-expansion.el │ ├── cb-flow-checker │ │ └── cb-flow-checker.el │ ├── cb-flow │ │ └── cb-flow.el │ ├── cb-js-smart-ops │ │ └── cb-js-smart-ops.el │ ├── cb-web-modes │ │ └── cb-web-modes.el │ └── js-yasnippet │ │ └── js-yasnippet.el └── packages.el ├── cb-layouts └── packages.el ├── cb-ledger ├── funcs.el ├── local │ ├── cb-ledger-format │ │ └── cb-ledger-format.el │ └── cb-ledger-reports │ │ └── cb-ledger-reports.el └── packages.el ├── cb-makefile └── packages.el ├── cb-mu4e ├── local │ └── mu4e-unread-messages │ │ ├── .gitignore │ │ └── mu4e-unread-messages.el └── packages.el ├── cb-ocaml ├── funcs.el ├── local │ ├── merlin-eldoc │ │ └── merlin-eldoc.el │ └── ocaml-autoinsert │ │ └── ocaml-autoinsert.el └── packages.el ├── cb-org-reveal └── packages.el ├── cb-org ├── funcs.el ├── local │ ├── cb-org-capture-url │ │ └── cb-org-capture-url.el │ ├── cb-org-clock-cascade │ │ └── cb-org-clock-cascade.el │ ├── cb-org-ctrl-c-ctrl-k │ │ └── cb-org-ctrl-c-ctrl-k.el │ ├── cb-org-ctrl-c-ret │ │ └── cb-org-ctrl-c-ret.el │ ├── cb-org-directory │ │ └── cb-org-directory.el │ ├── cb-org-export-koma-letter │ │ └── cb-org-export-koma-letter.el │ ├── cb-org-gdrive │ │ └── cb-org-gdrive.el │ ├── cb-org-goto │ │ └── cb-org-goto.el │ ├── cb-org-latex-preview-retina │ │ └── cb-org-latex-preview-retina.el │ ├── cb-org-pgp-decrpyt │ │ └── cb-org-pgp-decrpyt.el │ ├── cb-org-recalculate-whole-table │ │ └── cb-org-recalculate-whole-table.el │ ├── cb-org-subtree │ │ └── cb-org-subtree.el │ ├── cb-org-work │ │ └── cb-org-work.el │ └── org-autoinsert │ │ └── org-autoinsert.el └── packages.el ├── cb-project ├── local │ └── cb-project-show-project │ │ └── cb-project-show-project.el ├── packages.el └── project-skeletons │ └── movio-scala-library │ ├── README.md │ ├── __DOT__gitignore │ ├── build.sbt │ └── project │ ├── build.properties │ └── plugins.sbt ├── cb-proof ├── local │ ├── coq-meta-ret │ │ └── coq-meta-ret.el │ └── coq-unicode │ │ └── coq-unicode.el └── packages.el ├── cb-rust └── packages.el ├── cb-scala ├── local │ ├── cb-scala-autoinsert │ │ └── cb-scala-autoinsert.el │ ├── cb-scala-eldoc │ │ └── cb-scala-eldoc.el │ ├── cb-scala-flyspell │ │ └── cb-scala-flyspell.el │ ├── cb-scala-join-line │ │ └── cb-scala-join-line.el │ ├── cb-scala-ret │ │ └── cb-scala-ret.el │ ├── cb-scala-smart-ops │ │ └── cb-scala-smart-ops.el │ ├── cb-scala-yasnippet │ │ ├── cb-scala-yasnippet.el │ │ └── snippets │ │ │ └── scala-mode │ │ │ ├── Enumeration │ │ │ ├── abstract class │ │ │ ├── arbitrary def │ │ │ ├── arbitrary val │ │ │ ├── auxiliary constructor │ │ │ ├── case │ │ │ ├── case class │ │ │ ├── case object │ │ │ ├── class │ │ │ ├── def │ │ │ ├── def apply │ │ │ ├── def postStop │ │ │ ├── def preStart │ │ │ ├── def receive │ │ │ ├── for │ │ │ ├── if │ │ │ ├── implicit def │ │ │ ├── implicit object │ │ │ ├── implicit val │ │ │ ├── import │ │ │ ├── lazy val │ │ │ ├── main │ │ │ ├── match │ │ │ ├── method signature │ │ │ ├── object │ │ │ ├── override def │ │ │ ├── override lazy val │ │ │ ├── override val │ │ │ ├── package │ │ │ ├── package object │ │ │ ├── play-json formatter object │ │ │ ├── println │ │ │ ├── private def │ │ │ ├── private lazy val │ │ │ ├── private val │ │ │ ├── protected def │ │ │ ├── protected val │ │ │ ├── scalacheck property │ │ │ ├── scalatest class (FunSpec) │ │ │ ├── scalatest class (WordSpec) │ │ │ ├── scalatest describe │ │ │ ├── scalatest fixture (FunSpec) │ │ │ ├── scalatest fixture with helper (FunSpec) │ │ │ ├── sealed abstract class │ │ │ ├── sealed trait │ │ │ ├── slick table class │ │ │ ├── trait │ │ │ ├── try...catch │ │ │ ├── try...catch...finally │ │ │ ├── try...finally │ │ │ ├── type │ │ │ ├── val │ │ │ ├── var │ │ │ └── while │ ├── ensime-diminished-modeline │ │ └── ensime-diminished-modeline.el │ ├── ensime-flycheck-integration │ │ └── ensime-flycheck-integration.el │ └── sbt-file-mode │ │ └── sbt-file-mode.el └── packages.el ├── cb-smartparens ├── config.el ├── funcs.el ├── local │ ├── sp-generic-prog │ │ └── sp-generic-prog.el │ ├── sp-in-minibuffer │ │ └── sp-in-minibuffer.el │ └── sp-insert-or-up │ │ └── sp-insert-or-up.el └── packages.el ├── cb-sml ├── funcs.el ├── local │ ├── flycheck-sml │ │ └── flycheck-sml.el │ └── lazy-sml-mode │ │ └── lazy-sml-mode.el └── packages.el ├── cb-spelling ├── local │ └── cb-evil-ispell │ │ └── cb-evil-ispell.el └── packages.el ├── cb-sql ├── local │ └── cb-sql-find-attrs-with-type │ │ └── cb-sql-find-attrs-with-type.el └── packages.el ├── cb-sunrise-commander └── packages.el ├── cb-use-package-extensions.el ├── cb-vars.el ├── cb-yasnippet ├── funcs.el ├── packages.el └── snippets │ ├── agda2-mode │ ├── Implicit A B Set │ ├── Implicit A Set │ ├── Implicit B Set │ ├── data │ ├── let...in │ ├── module │ ├── n Nat │ └── record │ ├── bison-mode │ ├── %define │ ├── %empty │ ├── %left │ ├── %precedence │ ├── %right │ ├── %token │ ├── .yas-parents │ └── production │ ├── c++-mode │ ├── #include │ ├── #include "..." │ ├── auto │ ├── catch │ ├── class │ ├── constructor impl │ ├── delete │ ├── destructor impl │ ├── enum class │ ├── for │ ├── function │ ├── if │ ├── main │ ├── namespace │ ├── print │ ├── return │ ├── static_assert │ ├── struct │ ├── template decl │ ├── try...catch │ ├── using │ ├── using namespace │ └── virtual │ ├── c-mode │ ├── do while │ ├── else │ ├── for │ ├── guard │ ├── if │ ├── ifdef │ ├── ifndef │ ├── main │ ├── math │ ├── printf │ ├── static │ ├── stdio │ ├── stdlib │ ├── struct │ ├── typedef │ ├── typedef struct │ ├── union │ └── while │ ├── cb-web-js-mode │ ├── @flow annotation │ ├── React Component │ ├── class │ ├── console.log │ ├── const │ ├── constructor │ ├── for │ ├── function │ ├── if │ ├── if-else │ ├── import │ ├── import type │ ├── let │ ├── require │ ├── return │ └── var │ ├── cider-repl-mode │ ├── .yas-parents │ ├── ctl │ └── use overtone │ ├── clojure-mode │ ├── ->> │ ├── -?>> │ ├── FREE │ ├── case │ ├── cond │ ├── def │ ├── definst │ ├── defmacro │ ├── defmethod │ ├── defmulti │ ├── defn │ ├── defprotocol │ ├── defrecord │ ├── defsynth │ ├── deftype │ ├── env-gen │ ├── env-lin │ ├── extend-protocol │ ├── extend-type │ ├── for │ ├── if │ ├── if-not │ ├── let │ ├── ns │ ├── println │ ├── reify │ ├── when │ ├── when-let │ ├── when-not │ ├── with-open │ ├── with-out-str │ └── zero? │ ├── coq-mode │ ├── Check │ ├── CoFixpoint │ ├── CoInductive │ ├── Definition │ ├── Eval │ ├── Example │ ├── Fixpoint │ ├── Hint Rewrite │ ├── Hypothesis │ ├── Inductive │ ├── Lemma │ ├── Module │ ├── Proof │ ├── Qed │ ├── Remark │ ├── Require │ ├── Require Export │ ├── Require Import │ ├── SearchAbout │ ├── Section │ ├── Theorem │ ├── Variable │ ├── apply │ ├── apply...with │ ├── as [| x'] │ ├── assert │ ├── assumption │ ├── destruct │ ├── fun │ ├── generalize dependent │ ├── if │ ├── induction │ ├── intros │ ├── inversion │ ├── let...in │ ├── match │ ├── match-case │ ├── notation │ ├── reflexivity │ ├── replace │ ├── rewrite │ ├── simpl │ ├── symmetry │ └── unfold │ ├── csharp-mode │ ├── Console.WriteLine │ ├── Contract.Ensures │ ├── Contract.Ensures not null │ ├── Contract.EnsuresOnThrow │ ├── Contract.Requires │ ├── Contract.Requires not null │ ├── Dispose │ ├── IEnumerable │ ├── catch │ ├── class │ ├── constructor │ ├── else │ ├── else if │ ├── finally │ ├── for │ ├── foreach │ ├── if │ ├── interface │ ├── lambda │ ├── main │ ├── newtype class │ ├── private method │ ├── property (auto) │ ├── property (backing field) │ ├── property (backing field, mutable) │ ├── public method │ ├── static class │ ├── static method (private) │ ├── static method (public) │ ├── try...catch │ └── using │ ├── dockerfile-mode │ ├── ADD │ ├── CMD │ ├── COPY │ ├── ENTRYPOINT │ ├── ENV │ ├── EXPOSE │ ├── FROM │ ├── MAINTAINER │ ├── ONBUILD │ ├── RUN │ └── VOLUME │ ├── elm-mode │ ├── case │ ├── if │ ├── import │ ├── let │ ├── type │ └── type alias │ ├── emacs-lisp-mode │ ├── ->> │ ├── -let │ ├── Package-Requires │ ├── add-hook │ ├── add-to-list │ ├── after │ ├── assert │ ├── autoload │ ├── autoload directive │ ├── buffer-substring │ ├── buffer-substring (line) │ ├── cl-loop │ ├── comment separator │ ├── cond │ ├── condition-case │ ├── custom-set-faces │ ├── custom-set-variables │ ├── defadvice │ ├── defconst │ ├── defcustom │ ├── defface │ ├── defgroup │ ├── define package initialiser │ ├── define package post-init │ ├── define package pre-init │ ├── define-key │ ├── defmacro │ ├── defstruct │ ├── defun │ ├── defvar │ ├── destructuring-bind │ ├── dolist │ ├── elisp file header │ ├── ert-deftest │ ├── eval-when-compile │ ├── evil-define-key │ ├── format │ ├── goto-char │ ├── if │ ├── if-let │ ├── ignore-errors │ ├── interactive │ ├── lambda │ ├── let │ ├── let-alist │ ├── line-beginning-position │ ├── line-end-position │ ├── list │ ├── local-set-key │ ├── message │ ├── newline │ ├── point │ ├── point-max │ ├── point-min │ ├── progn │ ├── provide │ ├── require │ ├── require use-package │ ├── save-excursion │ ├── save-restriction │ ├── search-backward │ ├── search-backward-regexp │ ├── search-forward │ ├── search-forward-regexp │ ├── setq │ ├── setq-local │ ├── unless │ ├── unwind-protect │ ├── use-package │ ├── when │ ├── when-let │ ├── while │ └── with-current-buffer │ ├── erb-mode │ ├── % │ └── %= │ ├── extempore-mode │ ├── begin │ ├── bind-func │ ├── bind-instrument │ ├── case │ ├── cond │ ├── define │ ├── define-loop │ ├── if │ ├── lambda │ ├── let │ ├── play │ └── play-note │ ├── fsharp-mode │ ├── failwith │ ├── fun │ ├── if │ ├── let │ ├── let with function │ ├── match │ ├── match-case │ ├── module │ ├── mutable │ ├── open │ ├── printfn │ ├── record │ ├── record update │ ├── try │ ├── type │ └── while │ ├── go-mode │ ├── Println │ ├── case │ ├── const │ ├── else │ ├── else-if │ ├── for │ ├── func │ ├── go func │ ├── if │ ├── if-else │ ├── import │ ├── return │ ├── switch │ ├── type...interface │ └── type...struct │ ├── groovy-mode │ ├── class │ ├── def │ ├── def (function) │ ├── if │ ├── if-else │ ├── import │ └── println │ ├── haskell-c-mode │ ├── include │ └── starttype │ ├── haskell-cabal-mode │ ├── executable │ └── library │ ├── haskell-mode │ ├── LANGUAGE pragma │ ├── UNPACK pragma │ ├── case │ ├── context (HSpec) │ ├── data │ ├── data record │ ├── deriving instance │ ├── describe │ ├── do │ ├── do-binding │ ├── foreign import │ ├── if │ ├── import │ ├── import qualified │ ├── instance │ ├── it │ ├── lambda │ ├── let │ ├── main │ ├── newtype │ ├── putStrLn │ ├── type │ ├── type family │ ├── type instance │ ├── typeclass │ ├── undefined │ └── where │ ├── idris-mode │ ├── Type │ ├── data │ ├── data...where │ ├── if │ ├── lambda │ ├── module │ ├── putStrLn │ ├── record │ ├── using │ └── where │ ├── js2-mode │ ├── else │ ├── else if │ ├── function │ ├── if │ ├── if...else │ ├── return │ ├── var │ └── while │ ├── ledger-mode │ ├── Assets │ ├── comment │ ├── expense │ ├── income │ ├── reimbursement │ ├── repayment │ └── transaction │ ├── makefile-bsdmake-mode │ └── phony │ ├── nxml-mode │ ├── tag │ └── tag (closed) │ ├── org-mode │ ├── Table Sum Column │ ├── begin_example │ ├── begin_quote │ ├── ditaa │ ├── frag │ ├── gnuplot graph │ ├── keyword │ ├── latex environment │ ├── letter │ ├── presentation │ ├── src elisp │ ├── src javascript │ ├── src python │ ├── src ruby │ ├── src sh │ ├── src sql │ └── src sqlite │ ├── python-mode │ ├── class │ ├── def │ ├── else │ ├── for │ ├── from │ ├── if │ ├── import │ ├── init │ ├── list comprehension │ ├── main │ ├── method │ ├── new │ ├── print │ ├── return │ ├── set comprehension │ ├── try │ ├── while │ └── with │ ├── ruby-mode │ ├── case │ ├── class │ ├── def │ ├── do │ ├── else │ ├── elsif │ ├── if │ ├── main │ ├── module │ ├── require │ ├── require_relative │ ├── unless │ └── when │ ├── rust-mode │ ├── Option │ ├── allow │ ├── cf attribute │ ├── cfg flag │ ├── cfg value │ ├── closure │ ├── crate dead code attribute │ ├── crate_attribute │ ├── deriving attribute │ ├── else │ ├── else-if │ ├── enum │ ├── extern crate │ ├── fn │ ├── for │ ├── format! │ ├── if │ ├── if...else │ ├── impl │ ├── let │ ├── let mut │ ├── match │ ├── module │ ├── println! │ ├── public function │ ├── signature in trait │ ├── static variable │ ├── struct │ ├── trait │ ├── type │ ├── use │ └── while │ ├── scala-mode │ ├── logger debug │ ├── logger error │ ├── logger info │ ├── logger warn │ └── sealed abstract class │ ├── scheme-mode │ ├── case │ ├── cond │ ├── cust │ ├── define │ ├── defun │ ├── if │ ├── lambda │ ├── let │ ├── let* │ ├── letrec │ └── thread │ ├── sh-mode │ ├── case │ ├── echo │ ├── for │ ├── function │ ├── if │ └── while │ ├── sml-mode │ ├── case │ ├── datatype │ ├── exception │ ├── fn │ ├── fun │ ├── functor (opaque) │ ├── functor (transparent) │ ├── handle │ ├── if │ ├── let │ ├── open │ ├── print │ ├── raise │ ├── signature │ ├── structure │ ├── structure (alias) │ ├── structure (impl) │ ├── structure (opaque) │ ├── structure (transparent) │ ├── type │ └── val │ ├── snippet-mode │ ├── bol condition │ └── expand-env │ ├── sql-mode │ ├── alter table │ ├── case │ ├── cast │ ├── create index │ ├── create table │ ├── create view │ ├── cross join │ ├── distinct │ ├── drop index │ ├── foreign key constraint │ ├── group by │ ├── if not exists │ ├── inner join │ ├── insert │ ├── left outer join │ ├── natural join │ ├── not null │ ├── on │ ├── order by │ ├── primary key constraint │ ├── right outer join │ ├── rollback │ ├── rollback to savepoint │ ├── savepoint │ ├── select │ ├── start transaction...commit │ ├── union all │ ├── uniqueness constraint │ ├── update │ ├── using │ ├── when...then │ └── where │ ├── swift-mode │ ├── case │ ├── class │ ├── do-while │ ├── else │ ├── enum │ ├── for │ ├── for-in │ ├── func │ ├── if │ ├── let │ ├── struct │ ├── switch │ └── while │ ├── tuareg-mode │ ├── begin...end │ ├── eprintf │ ├── exception │ ├── failwith │ ├── for │ ├── fprintf │ ├── fun │ ├── functor │ ├── if │ ├── include │ ├── let │ ├── let open │ ├── let rec │ ├── let with function │ ├── main │ ├── match │ ├── match-case │ ├── method │ ├── module │ ├── module type │ ├── module type of │ ├── mutable │ ├── object │ ├── open │ ├── printf │ ├── protect │ ├── record │ ├── record update │ ├── sig │ ├── signature inside module │ ├── sprintf │ ├── struct │ ├── try │ ├── type │ ├── val │ ├── while │ ├── with type │ └── with_file │ ├── utop-mode │ └── let │ └── wisent-grammar-mode │ └── keyword └── stallman.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/.gitmodules -------------------------------------------------------------------------------- /.spacemacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/.spacemacs -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/README.md -------------------------------------------------------------------------------- /cb-agda/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-agda/funcs.el -------------------------------------------------------------------------------- /cb-agda/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-agda/packages.el -------------------------------------------------------------------------------- /cb-autoinsert/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-autoinsert/packages.el -------------------------------------------------------------------------------- /cb-bootstrap.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-bootstrap.el -------------------------------------------------------------------------------- /cb-calc/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-calc/packages.el -------------------------------------------------------------------------------- /cb-circe/local/circe-show-channels/circe-show-channels.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-circe/local/circe-show-channels/circe-show-channels.el -------------------------------------------------------------------------------- /cb-circe/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-circe/packages.el -------------------------------------------------------------------------------- /cb-coffeescript/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-coffeescript/packages.el -------------------------------------------------------------------------------- /cb-company/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-company/packages.el -------------------------------------------------------------------------------- /cb-core/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/config.el -------------------------------------------------------------------------------- /cb-core/keybindings.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/keybindings.el -------------------------------------------------------------------------------- /cb-core/local/case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/case/README.md -------------------------------------------------------------------------------- /cb-core/local/case/case.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/case/case.el -------------------------------------------------------------------------------- /cb-core/local/cb-buffers/cb-buffers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-buffers/cb-buffers.el -------------------------------------------------------------------------------- /cb-core/local/cb-exit-emacs/cb-exit-emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-exit-emacs/cb-exit-emacs.el -------------------------------------------------------------------------------- /cb-core/local/cb-generate-password/cb-generate-password.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-generate-password/cb-generate-password.el -------------------------------------------------------------------------------- /cb-core/local/cb-helm-emoticons/cb-helm-emoticons.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-helm-emoticons/cb-helm-emoticons.el -------------------------------------------------------------------------------- /cb-core/local/cb-ligatures/cb-ligatures.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-ligatures/cb-ligatures.el -------------------------------------------------------------------------------- /cb-core/local/cb-macros/cb-macros.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-macros/cb-macros.el -------------------------------------------------------------------------------- /cb-core/local/cb-remap-face/cb-remap-face.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-remap-face/cb-remap-face.el -------------------------------------------------------------------------------- /cb-core/local/cb-rotate-window-split/cb-rotate-window-split.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-rotate-window-split/cb-rotate-window-split.el -------------------------------------------------------------------------------- /cb-core/local/cb-subr-x/cb-subr-x.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-subr-x/cb-subr-x.el -------------------------------------------------------------------------------- /cb-core/local/cb-transpose-line/cb-transpose-line.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/cb-transpose-line/cb-transpose-line.el -------------------------------------------------------------------------------- /cb-core/local/helm-http-status/helm-http-status.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/helm-http-status/helm-http-status.el -------------------------------------------------------------------------------- /cb-core/local/indent-dwim/indent-dwim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/indent-dwim/indent-dwim.el -------------------------------------------------------------------------------- /cb-core/local/indirect-region/indirect-region.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/indirect-region/indirect-region.el -------------------------------------------------------------------------------- /cb-core/local/insert-shebang/insert-shebang.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/insert-shebang/insert-shebang.el -------------------------------------------------------------------------------- /cb-core/local/insert-timestamp/insert-timestamp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/insert-timestamp/insert-timestamp.el -------------------------------------------------------------------------------- /cb-core/local/insert-variable-value/insert-variable-value.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/insert-variable-value/insert-variable-value.el -------------------------------------------------------------------------------- /cb-core/local/light-workgroups/light-workgroups.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/light-workgroups/light-workgroups.el -------------------------------------------------------------------------------- /cb-core/local/locate-key-binding/locate-key-binding.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/locate-key-binding/locate-key-binding.el -------------------------------------------------------------------------------- /cb-core/local/remove-line-breaks/remove-line-breaks.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/remove-line-breaks/remove-line-breaks.el -------------------------------------------------------------------------------- /cb-core/local/replace-smart-quotes/replace-smart-quotes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/replace-smart-quotes/replace-smart-quotes.el -------------------------------------------------------------------------------- /cb-core/local/smart-ops/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/.dir-locals.el -------------------------------------------------------------------------------- /cb-core/local/smart-ops/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/.gitignore -------------------------------------------------------------------------------- /cb-core/local/smart-ops/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/.travis.yml -------------------------------------------------------------------------------- /cb-core/local/smart-ops/Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/Cask -------------------------------------------------------------------------------- /cb-core/local/smart-ops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/Makefile -------------------------------------------------------------------------------- /cb-core/local/smart-ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/README.md -------------------------------------------------------------------------------- /cb-core/local/smart-ops/smart-ops-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/smart-ops-tests.el -------------------------------------------------------------------------------- /cb-core/local/smart-ops/smart-ops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/local/smart-ops/smart-ops.el -------------------------------------------------------------------------------- /cb-core/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-core/packages.el -------------------------------------------------------------------------------- /cb-cosmetic/local/cb-faces/cb-faces.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cosmetic/local/cb-faces/cb-faces.el -------------------------------------------------------------------------------- /cb-cosmetic/local/lambda-mode/lambda-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cosmetic/local/lambda-mode/lambda-mode.el -------------------------------------------------------------------------------- /cb-cosmetic/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cosmetic/packages.el -------------------------------------------------------------------------------- /cb-cpp/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cpp/funcs.el -------------------------------------------------------------------------------- /cb-cpp/local/cpp-autoinsert/cpp-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cpp/local/cpp-autoinsert/cpp-autoinsert.el -------------------------------------------------------------------------------- /cb-cpp/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-cpp/packages.el -------------------------------------------------------------------------------- /cb-crontab/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-crontab/packages.el -------------------------------------------------------------------------------- /cb-diff/local/ediff-trees/ediff-trees.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-diff/local/ediff-trees/ediff-trees.el -------------------------------------------------------------------------------- /cb-diff/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-diff/packages.el -------------------------------------------------------------------------------- /cb-elisp/local/cb-elisp-eval-dwim/cb-elisp-eval-dwim.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elisp/local/cb-elisp-eval-dwim/cb-elisp-eval-dwim.el -------------------------------------------------------------------------------- /cb-elisp/local/cb-elisp-meta-ret/cb-elisp-meta-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elisp/local/cb-elisp-meta-ret/cb-elisp-meta-ret.el -------------------------------------------------------------------------------- /cb-elisp/local/elisp-autoinsert/elisp-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elisp/local/elisp-autoinsert/elisp-autoinsert.el -------------------------------------------------------------------------------- /cb-elisp/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elisp/packages.el -------------------------------------------------------------------------------- /cb-elm/local/elm-insert-exposing/elm-insert-exposing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elm/local/elm-insert-exposing/elm-insert-exposing.el -------------------------------------------------------------------------------- /cb-elm/local/elm-meta-ret/elm-meta-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elm/local/elm-meta-ret/elm-meta-ret.el -------------------------------------------------------------------------------- /cb-elm/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-elm/packages.el -------------------------------------------------------------------------------- /cb-eshell/local/cb-eshell-prompt/cb-eshell-prompt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-eshell/local/cb-eshell-prompt/cb-eshell-prompt.el -------------------------------------------------------------------------------- /cb-eshell/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-eshell/packages.el -------------------------------------------------------------------------------- /cb-evil/local/cb-evil-visual-defaults/cb-evil-visual-defaults.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-evil/local/cb-evil-visual-defaults/cb-evil-visual-defaults.el -------------------------------------------------------------------------------- /cb-evil/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-evil/packages.el -------------------------------------------------------------------------------- /cb-extempore/local/extempore/extempore-minor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-extempore/local/extempore/extempore-minor.el -------------------------------------------------------------------------------- /cb-extempore/local/extempore/extempore.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-extempore/local/extempore/extempore.el -------------------------------------------------------------------------------- /cb-extempore/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-extempore/packages.el -------------------------------------------------------------------------------- /cb-flycheck/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-flycheck/packages.el -------------------------------------------------------------------------------- /cb-git/local/git-commit-jira-prefix/git-commit-jira-prefix.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-git/local/git-commit-jira-prefix/git-commit-jira-prefix.el -------------------------------------------------------------------------------- /cb-git/local/magit-browse-repo/magit-browse-repo.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-git/local/magit-browse-repo/magit-browse-repo.el -------------------------------------------------------------------------------- /cb-git/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-git/packages.el -------------------------------------------------------------------------------- /cb-go/local/cb-go-run/cb-go-run.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-go/local/cb-go-run/cb-go-run.el -------------------------------------------------------------------------------- /cb-go/local/cb-go-smart-ops/cb-go-smart-ops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-go/local/cb-go-smart-ops/cb-go-smart-ops.el -------------------------------------------------------------------------------- /cb-go/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-go/packages.el -------------------------------------------------------------------------------- /cb-groovy/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-groovy/packages.el -------------------------------------------------------------------------------- /cb-haskell/local/cb-haskell-alignment/cb-haskell-alignment.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/cb-haskell-alignment/cb-haskell-alignment.el -------------------------------------------------------------------------------- /cb-haskell/local/cb-haskell-meta-ret/cb-haskell-meta-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/cb-haskell-meta-ret/cb-haskell-meta-ret.el -------------------------------------------------------------------------------- /cb-haskell/local/cb-haskell-smart-ops/cb-haskell-smart-ops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/cb-haskell-smart-ops/cb-haskell-smart-ops.el -------------------------------------------------------------------------------- /cb-haskell/local/cb-stack-hoogle/cb-stack-hoogle.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/cb-stack-hoogle/cb-stack-hoogle.el -------------------------------------------------------------------------------- /cb-haskell/local/ghc-dump/ghc-dump.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/ghc-dump/ghc-dump.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-autoinsert/haskell-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-autoinsert/haskell-autoinsert.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-flycheck-holes/haskell-flycheck-holes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-flycheck-holes/haskell-flycheck-holes.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-flyspell/haskell-flyspell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-flyspell/haskell-flyspell.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-ghc-opts/haskell-ghc-opts.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-ghc-opts/haskell-ghc-opts.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-imports/haskell-imports.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-imports/haskell-imports.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-pragmas/haskell-pragmas.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-pragmas/haskell-pragmas.el -------------------------------------------------------------------------------- /cb-haskell/local/haskell-ret/haskell-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/local/haskell-ret/haskell-ret.el -------------------------------------------------------------------------------- /cb-haskell/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-haskell/packages.el -------------------------------------------------------------------------------- /cb-ibuffer/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ibuffer/packages.el -------------------------------------------------------------------------------- /cb-idris/config.el: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cb-idris/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-idris/funcs.el -------------------------------------------------------------------------------- /cb-idris/local/idris-autoinsert/idris-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-idris/local/idris-autoinsert/idris-autoinsert.el -------------------------------------------------------------------------------- /cb-idris/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-idris/packages.el -------------------------------------------------------------------------------- /cb-js/local/cb-flow-checker/cb-flow-checker.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/local/cb-flow-checker/cb-flow-checker.el -------------------------------------------------------------------------------- /cb-js/local/cb-flow/cb-flow.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/local/cb-flow/cb-flow.el -------------------------------------------------------------------------------- /cb-js/local/cb-js-smart-ops/cb-js-smart-ops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/local/cb-js-smart-ops/cb-js-smart-ops.el -------------------------------------------------------------------------------- /cb-js/local/cb-web-modes/cb-web-modes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/local/cb-web-modes/cb-web-modes.el -------------------------------------------------------------------------------- /cb-js/local/js-yasnippet/js-yasnippet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/local/js-yasnippet/js-yasnippet.el -------------------------------------------------------------------------------- /cb-js/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-js/packages.el -------------------------------------------------------------------------------- /cb-layouts/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-layouts/packages.el -------------------------------------------------------------------------------- /cb-ledger/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ledger/funcs.el -------------------------------------------------------------------------------- /cb-ledger/local/cb-ledger-format/cb-ledger-format.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ledger/local/cb-ledger-format/cb-ledger-format.el -------------------------------------------------------------------------------- /cb-ledger/local/cb-ledger-reports/cb-ledger-reports.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ledger/local/cb-ledger-reports/cb-ledger-reports.el -------------------------------------------------------------------------------- /cb-ledger/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ledger/packages.el -------------------------------------------------------------------------------- /cb-makefile/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-makefile/packages.el -------------------------------------------------------------------------------- /cb-mu4e/local/mu4e-unread-messages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-mu4e/local/mu4e-unread-messages/.gitignore -------------------------------------------------------------------------------- /cb-mu4e/local/mu4e-unread-messages/mu4e-unread-messages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-mu4e/local/mu4e-unread-messages/mu4e-unread-messages.el -------------------------------------------------------------------------------- /cb-mu4e/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-mu4e/packages.el -------------------------------------------------------------------------------- /cb-ocaml/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ocaml/funcs.el -------------------------------------------------------------------------------- /cb-ocaml/local/merlin-eldoc/merlin-eldoc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ocaml/local/merlin-eldoc/merlin-eldoc.el -------------------------------------------------------------------------------- /cb-ocaml/local/ocaml-autoinsert/ocaml-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ocaml/local/ocaml-autoinsert/ocaml-autoinsert.el -------------------------------------------------------------------------------- /cb-ocaml/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-ocaml/packages.el -------------------------------------------------------------------------------- /cb-org-reveal/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org-reveal/packages.el -------------------------------------------------------------------------------- /cb-org/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/funcs.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-capture-url/cb-org-capture-url.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-capture-url/cb-org-capture-url.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-clock-cascade/cb-org-clock-cascade.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-clock-cascade/cb-org-clock-cascade.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-ctrl-c-ctrl-k/cb-org-ctrl-c-ctrl-k.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-ctrl-c-ctrl-k/cb-org-ctrl-c-ctrl-k.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-ctrl-c-ret/cb-org-ctrl-c-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-ctrl-c-ret/cb-org-ctrl-c-ret.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-directory/cb-org-directory.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-directory/cb-org-directory.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-gdrive/cb-org-gdrive.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-gdrive/cb-org-gdrive.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-goto/cb-org-goto.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-goto/cb-org-goto.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-pgp-decrpyt/cb-org-pgp-decrpyt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-pgp-decrpyt/cb-org-pgp-decrpyt.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-subtree/cb-org-subtree.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-subtree/cb-org-subtree.el -------------------------------------------------------------------------------- /cb-org/local/cb-org-work/cb-org-work.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/cb-org-work/cb-org-work.el -------------------------------------------------------------------------------- /cb-org/local/org-autoinsert/org-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/local/org-autoinsert/org-autoinsert.el -------------------------------------------------------------------------------- /cb-org/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-org/packages.el -------------------------------------------------------------------------------- /cb-project/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-project/packages.el -------------------------------------------------------------------------------- /cb-project/project-skeletons/movio-scala-library/README.md: -------------------------------------------------------------------------------- 1 | # __PROJECT-NAME__ 2 | 3 | __DESCRIPTION__ 4 | -------------------------------------------------------------------------------- /cb-project/project-skeletons/movio-scala-library/__DOT__gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-project/project-skeletons/movio-scala-library/__DOT__gitignore -------------------------------------------------------------------------------- /cb-project/project-skeletons/movio-scala-library/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-project/project-skeletons/movio-scala-library/build.sbt -------------------------------------------------------------------------------- /cb-project/project-skeletons/movio-scala-library/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=__SBT-VERSION__ 2 | -------------------------------------------------------------------------------- /cb-proof/local/coq-meta-ret/coq-meta-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-proof/local/coq-meta-ret/coq-meta-ret.el -------------------------------------------------------------------------------- /cb-proof/local/coq-unicode/coq-unicode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-proof/local/coq-unicode/coq-unicode.el -------------------------------------------------------------------------------- /cb-proof/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-proof/packages.el -------------------------------------------------------------------------------- /cb-rust/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-rust/packages.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-autoinsert/cb-scala-autoinsert.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-autoinsert/cb-scala-autoinsert.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-eldoc/cb-scala-eldoc.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-eldoc/cb-scala-eldoc.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-flyspell/cb-scala-flyspell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-flyspell/cb-scala-flyspell.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-join-line/cb-scala-join-line.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-join-line/cb-scala-join-line.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-ret/cb-scala-ret.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-ret/cb-scala-ret.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-smart-ops/cb-scala-smart-ops.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-smart-ops/cb-scala-smart-ops.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/cb-scala-yasnippet.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/cb-scala-yasnippet.el -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/Enumeration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/Enumeration -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case class -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/case object -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/class -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/def -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/def apply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/def apply -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/for -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/if -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/import -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/lazy val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/lazy val -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/main -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/match -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/object -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/package -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/println -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/trait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/trait -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/type -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/val -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/var -------------------------------------------------------------------------------- /cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/cb-scala-yasnippet/snippets/scala-mode/while -------------------------------------------------------------------------------- /cb-scala/local/sbt-file-mode/sbt-file-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/local/sbt-file-mode/sbt-file-mode.el -------------------------------------------------------------------------------- /cb-scala/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-scala/packages.el -------------------------------------------------------------------------------- /cb-smartparens/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/config.el -------------------------------------------------------------------------------- /cb-smartparens/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/funcs.el -------------------------------------------------------------------------------- /cb-smartparens/local/sp-generic-prog/sp-generic-prog.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/local/sp-generic-prog/sp-generic-prog.el -------------------------------------------------------------------------------- /cb-smartparens/local/sp-in-minibuffer/sp-in-minibuffer.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/local/sp-in-minibuffer/sp-in-minibuffer.el -------------------------------------------------------------------------------- /cb-smartparens/local/sp-insert-or-up/sp-insert-or-up.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/local/sp-insert-or-up/sp-insert-or-up.el -------------------------------------------------------------------------------- /cb-smartparens/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-smartparens/packages.el -------------------------------------------------------------------------------- /cb-sml/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sml/funcs.el -------------------------------------------------------------------------------- /cb-sml/local/flycheck-sml/flycheck-sml.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sml/local/flycheck-sml/flycheck-sml.el -------------------------------------------------------------------------------- /cb-sml/local/lazy-sml-mode/lazy-sml-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sml/local/lazy-sml-mode/lazy-sml-mode.el -------------------------------------------------------------------------------- /cb-sml/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sml/packages.el -------------------------------------------------------------------------------- /cb-spelling/local/cb-evil-ispell/cb-evil-ispell.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-spelling/local/cb-evil-ispell/cb-evil-ispell.el -------------------------------------------------------------------------------- /cb-spelling/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-spelling/packages.el -------------------------------------------------------------------------------- /cb-sql/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sql/packages.el -------------------------------------------------------------------------------- /cb-sunrise-commander/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-sunrise-commander/packages.el -------------------------------------------------------------------------------- /cb-use-package-extensions.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-use-package-extensions.el -------------------------------------------------------------------------------- /cb-vars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-vars.el -------------------------------------------------------------------------------- /cb-yasnippet/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/funcs.el -------------------------------------------------------------------------------- /cb-yasnippet/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/packages.el -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/Implicit A B Set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/Implicit A B Set -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/Implicit A Set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/Implicit A Set -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/Implicit B Set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/Implicit B Set -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/data -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/let...in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/let...in -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/n Nat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/n Nat -------------------------------------------------------------------------------- /cb-yasnippet/snippets/agda2-mode/record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/agda2-mode/record -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%define -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%empty -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%left: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%left -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%precedence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%precedence -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%right -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/%token: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/%token -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | c-mode 2 | -------------------------------------------------------------------------------- /cb-yasnippet/snippets/bison-mode/production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/bison-mode/production -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/#include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/#include -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/#include "...": -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/#include "..." -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/auto -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/catch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/constructor impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/constructor impl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/delete -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/destructor impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/destructor impl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/enum class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/enum class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/namespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/namespace -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/print -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/return -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/static_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/static_assert -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/template decl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/template decl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/try...catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/try...catch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/using -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/using namespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/using namespace -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c++-mode/virtual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c++-mode/virtual -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/do while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/do while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/guard -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/ifdef: -------------------------------------------------------------------------------- 1 | #ifdef $1 2 | $0 3 | #endif -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/ifndef: -------------------------------------------------------------------------------- 1 | #ifndef $1 2 | $0 3 | #endif -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/math: -------------------------------------------------------------------------------- 1 | #include 2 | $0 -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/printf -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/static -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/stdio: -------------------------------------------------------------------------------- 1 | #include 2 | $0 -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/stdlib: -------------------------------------------------------------------------------- 1 | #include 2 | $0 -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/typedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/typedef -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/typedef struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/typedef struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/union: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/union -------------------------------------------------------------------------------- /cb-yasnippet/snippets/c-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/c-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/@flow annotation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/@flow annotation -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/React Component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/React Component -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/console.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/console.log -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/const -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/constructor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/constructor -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/if-else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/if-else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/import type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/import type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/require -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/return -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cb-web-js-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cb-web-js-mode/var -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cider-repl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | clojure-mode -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cider-repl-mode/ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cider-repl-mode/ctl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/cider-repl-mode/use overtone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/cider-repl-mode/use overtone -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/->>: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/->> -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/-?>>: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/-?>> -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/FREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/FREE -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/cond -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/def -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/definst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/definst -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defmacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defmacro -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defmethod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defmethod -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defmulti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defmulti -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defprotocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defprotocol -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defrecord -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/defsynth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/defsynth -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/deftype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/deftype -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/env-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/env-gen -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/env-lin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/env-lin -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/extend-protocol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/extend-protocol -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/extend-type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/extend-type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/if-not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/if-not -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/ns -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/println -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/reify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/reify -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/when -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/when-let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/when-let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/when-not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/when-not -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/with-open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/with-open -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/with-out-str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/with-out-str -------------------------------------------------------------------------------- /cb-yasnippet/snippets/clojure-mode/zero?: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/clojure-mode/zero? -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Check -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/CoFixpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/CoFixpoint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/CoInductive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/CoInductive -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Definition -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Eval -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Example -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Fixpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Fixpoint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Hint Rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Hint Rewrite -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Hypothesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Hypothesis -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Inductive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Inductive -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Lemma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Lemma -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Proof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Proof -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Qed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Qed -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Remark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Remark -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Require -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Require Export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Require Export -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Require Import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Require Import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/SearchAbout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/SearchAbout -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Section: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Section -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Theorem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Theorem -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/Variable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/Variable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/apply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/apply -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/apply...with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/apply...with -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/as [| x']: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/as [| x'] -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/assert -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/assumption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/assumption -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/destruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/destruct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/fun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/generalize dependent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/generalize dependent -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/induction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/induction -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/intros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/intros -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/inversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/inversion -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/let...in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/let...in -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/match -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/match-case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/match-case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/notation -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/reflexivity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/reflexivity -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/replace -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/rewrite -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/simpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/simpl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/symmetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/symmetry -------------------------------------------------------------------------------- /cb-yasnippet/snippets/coq-mode/unfold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/coq-mode/unfold -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Console.WriteLine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Console.WriteLine -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Contract.Ensures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Contract.Ensures -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Contract.Ensures not null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Contract.Ensures not null -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Contract.EnsuresOnThrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Contract.EnsuresOnThrow -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Contract.Requires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Contract.Requires -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Contract.Requires not null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Contract.Requires not null -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/Dispose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/Dispose -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/IEnumerable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/IEnumerable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/catch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/constructor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/constructor -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/else if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/else if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/finally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/finally -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/foreach -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/interface -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/lambda -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/newtype class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/newtype class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/private method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/private method -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/property (auto): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/property (auto) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/property (backing field): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/property (backing field) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/public method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/public method -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/static class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/static class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/static method (private): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/static method (private) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/static method (public): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/static method (public) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/try...catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/try...catch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/csharp-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/csharp-mode/using -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/ADD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/ADD -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/CMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/CMD -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/COPY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/COPY -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/ENTRYPOINT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/ENTRYPOINT -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/ENV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/ENV -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/EXPOSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/EXPOSE -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/FROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/FROM -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/MAINTAINER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/MAINTAINER -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/ONBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/ONBUILD -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/RUN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/RUN -------------------------------------------------------------------------------- /cb-yasnippet/snippets/dockerfile-mode/VOLUME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/dockerfile-mode/VOLUME -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/elm-mode/type alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/elm-mode/type alias -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/->>: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/->> -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/-let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/-let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/Package-Requires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/Package-Requires -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/add-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/add-hook -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/add-to-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/add-to-list -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/after -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/assert -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/autoload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/autoload -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/autoload directive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/autoload directive -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/buffer-substring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/buffer-substring -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/buffer-substring (line): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/buffer-substring (line) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/cl-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/cl-loop -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/comment separator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/comment separator -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/cond -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/condition-case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/condition-case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/custom-set-faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/custom-set-faces -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/custom-set-variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/custom-set-variables -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defadvice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defadvice -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defconst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defconst -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defcustom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defcustom -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defface -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defgroup -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/define package initialiser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/define package initialiser -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/define package post-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/define package post-init -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/define package pre-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/define package pre-init -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/define-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/define-key -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defmacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defmacro -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defstruct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/defvar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/defvar -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/destructuring-bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/destructuring-bind -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/dolist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/dolist -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/elisp file header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/elisp file header -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/ert-deftest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/ert-deftest -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/eval-when-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/eval-when-compile -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/evil-define-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/evil-define-key -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/format -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/goto-char: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/goto-char -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/if-let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/if-let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/ignore-errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/ignore-errors -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/interactive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/interactive -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/lambda -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/let-alist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/let-alist -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/line-beginning-position: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/line-beginning-position -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/line-end-position: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/line-end-position -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/list -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/local-set-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/local-set-key -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/message -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/newline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/newline -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/point: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/point -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/point-max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/point-max -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/point-min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/point-min -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/progn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/progn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/provide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/provide -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/require -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/require use-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/require use-package -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/save-excursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/save-excursion -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/save-restriction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/save-restriction -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/search-backward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/search-backward -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/search-backward-regexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/search-backward-regexp -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/search-forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/search-forward -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/search-forward-regexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/search-forward-regexp -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/setq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/setq -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/setq-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/setq-local -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/unless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/unless -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/unwind-protect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/unwind-protect -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/use-package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/use-package -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/when -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/when-let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/when-let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/emacs-lisp-mode/with-current-buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/emacs-lisp-mode/with-current-buffer -------------------------------------------------------------------------------- /cb-yasnippet/snippets/erb-mode/%: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/erb-mode/% -------------------------------------------------------------------------------- /cb-yasnippet/snippets/erb-mode/%=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/erb-mode/%= -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/begin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/begin -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/bind-func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/bind-func -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/bind-instrument: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/bind-instrument -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/cond -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/define -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/define-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/define-loop -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/lambda -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/play -------------------------------------------------------------------------------- /cb-yasnippet/snippets/extempore-mode/play-note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/extempore-mode/play-note -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/failwith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/failwith -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/fun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/let with function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/let with function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/match -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/match-case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/match-case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/mutable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/mutable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/open -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/printfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/printfn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/record -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/record update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/record update -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/try -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/fsharp-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/fsharp-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/Println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/Println -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/const -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/else-if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/else-if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/func -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/go func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/go func -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/if-else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/if-else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/return -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/switch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/type...interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/type...interface -------------------------------------------------------------------------------- /cb-yasnippet/snippets/go-mode/type...struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/go-mode/type...struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/def -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/def (function): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/def (function) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/if-else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/if-else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/groovy-mode/println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/groovy-mode/println -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-c-mode/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-c-mode/include -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-c-mode/starttype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-c-mode/starttype -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-cabal-mode/executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-cabal-mode/executable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-cabal-mode/library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-cabal-mode/library -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/LANGUAGE pragma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/LANGUAGE pragma -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/UNPACK pragma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/UNPACK pragma -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/context (HSpec): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/context (HSpec) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/data -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/data record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/data record -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/deriving instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/deriving instance -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/describe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/describe -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/do -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/do-binding: -------------------------------------------------------------------------------- 1 | # key: b 2 | # name: do-binding 3 | # -- 4 | ${1:b} `(haskell/fmt-larrow)` $0 -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/foreign import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/foreign import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/import qualified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/import qualified -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/instance -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/it -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/lambda -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/newtype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/newtype -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/putStrLn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/putStrLn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/type family: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/type family -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/type instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/type instance -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/typeclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/typeclass -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/undefined: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/undefined -------------------------------------------------------------------------------- /cb-yasnippet/snippets/haskell-mode/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/haskell-mode/where -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/Type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/Type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/data -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/data...where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/data...where -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/lambda: -------------------------------------------------------------------------------- 1 | # key: \ 2 | # name: lambda 3 | # -- 4 | \\${1:x} => $0 -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/putStrLn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/putStrLn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/record -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/using -------------------------------------------------------------------------------- /cb-yasnippet/snippets/idris-mode/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/idris-mode/where -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/else if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/else if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/if...else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/if...else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/return -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/var -------------------------------------------------------------------------------- /cb-yasnippet/snippets/js2-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/js2-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/Assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/Assets -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/comment -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/expense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/expense -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/income: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/income -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/reimbursement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/reimbursement -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/repayment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/repayment -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ledger-mode/transaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ledger-mode/transaction -------------------------------------------------------------------------------- /cb-yasnippet/snippets/makefile-bsdmake-mode/phony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/makefile-bsdmake-mode/phony -------------------------------------------------------------------------------- /cb-yasnippet/snippets/nxml-mode/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/nxml-mode/tag -------------------------------------------------------------------------------- /cb-yasnippet/snippets/nxml-mode/tag (closed): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/nxml-mode/tag (closed) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/Table Sum Column: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/Table Sum Column -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/begin_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/begin_example -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/begin_quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/begin_quote -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/ditaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/ditaa -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/frag -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/gnuplot graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/gnuplot graph -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/keyword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/keyword -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/latex environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/latex environment -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/letter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/letter -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/presentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/presentation -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src elisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src elisp -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src javascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src javascript -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src python -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src ruby -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src sh -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src sql -------------------------------------------------------------------------------- /cb-yasnippet/snippets/org-mode/src sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/org-mode/src sqlite -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/def -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/from: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/from -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/import -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/init -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/list comprehension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/list comprehension -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/method -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/new -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/print -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/return -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/set comprehension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/set comprehension -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/try -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/python-mode/with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/python-mode/with -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/def -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/do -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/elsif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/elsif -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/require -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/require_relative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/require_relative -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/unless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/unless -------------------------------------------------------------------------------- /cb-yasnippet/snippets/ruby-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/ruby-mode/when -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/Option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/Option -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/allow -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/cf attribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/cf attribute -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/cfg flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/cfg flag -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/cfg value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/cfg value -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/closure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/closure -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/crate dead code attribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/crate dead code attribute -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/crate_attribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/crate_attribute -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/deriving attribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/deriving attribute -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/else-if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/else-if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/enum -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/extern crate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/extern crate -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/fn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/format!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/format! -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/if...else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/if...else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/impl -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/let mut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/let mut -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/match -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/println!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/println! -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/public function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/public function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/signature in trait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/signature in trait -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/static variable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/static variable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/trait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/trait -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/use -------------------------------------------------------------------------------- /cb-yasnippet/snippets/rust-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/rust-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scala-mode/logger debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scala-mode/logger debug -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scala-mode/logger error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scala-mode/logger error -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scala-mode/logger info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scala-mode/logger info -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scala-mode/logger warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scala-mode/logger warn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scala-mode/sealed abstract class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scala-mode/sealed abstract class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/cond -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/cust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/cust -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/define -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/defun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/defun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/lambda -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/let*: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/let* -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/letrec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/letrec -------------------------------------------------------------------------------- /cb-yasnippet/snippets/scheme-mode/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/scheme-mode/thread -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/echo -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sh-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sh-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/datatype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/datatype -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/exception -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/fn -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/fun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/functor (opaque): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/functor (opaque) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/functor (transparent): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/functor (transparent) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/handle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/handle -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/open -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/print -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/raise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/raise -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/signature -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/structure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/structure -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/structure (alias): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/structure (alias) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/structure (impl): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/structure (impl) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/structure (opaque): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/structure (opaque) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/structure (transparent): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/structure (transparent) -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sml-mode/val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sml-mode/val -------------------------------------------------------------------------------- /cb-yasnippet/snippets/snippet-mode/bol condition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/snippet-mode/bol condition -------------------------------------------------------------------------------- /cb-yasnippet/snippets/snippet-mode/expand-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/snippet-mode/expand-env -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/alter table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/alter table -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/cast -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/create index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/create index -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/create table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/create table -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/create view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/create view -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/cross join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/cross join -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/distinct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/distinct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/drop index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/drop index -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/foreign key constraint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/foreign key constraint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/group by: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/group by -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/if not exists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/if not exists -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/inner join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/inner join -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/insert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/insert -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/left outer join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/left outer join -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/natural join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/natural join -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/not null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/not null -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/on -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/order by: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/order by -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/primary key constraint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/primary key constraint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/right outer join: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/right outer join -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/rollback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/rollback -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/rollback to savepoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/rollback to savepoint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/savepoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/savepoint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/select: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/select -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/start transaction...commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/start transaction...commit -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/union all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/union all -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/uniqueness constraint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/uniqueness constraint -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/update -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/using -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/when...then: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/when...then -------------------------------------------------------------------------------- /cb-yasnippet/snippets/sql-mode/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/sql-mode/where -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/class -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/do-while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/do-while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/else -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/enum -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/for-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/for-in -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/func -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/switch -------------------------------------------------------------------------------- /cb-yasnippet/snippets/swift-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/swift-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/begin...end: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/begin...end -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/eprintf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/eprintf -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/exception -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/failwith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/failwith -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/for -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/fprintf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/fprintf -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/fun -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/functor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/functor -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/if -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/include -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/let open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/let open -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/let rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/let rec -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/let with function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/let with function -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/main -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/match -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/match-case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/match-case -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/method -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/module type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/module type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/module type of: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/module type of -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/mutable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/mutable -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/object -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/open -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/printf -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/protect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/protect -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/record -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/record update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/record update -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/sig -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/signature inside module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/signature inside module -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/sprintf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/sprintf -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/struct -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/try -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/val -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/while -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/with type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/with type -------------------------------------------------------------------------------- /cb-yasnippet/snippets/tuareg-mode/with_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/tuareg-mode/with_file -------------------------------------------------------------------------------- /cb-yasnippet/snippets/utop-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/utop-mode/let -------------------------------------------------------------------------------- /cb-yasnippet/snippets/wisent-grammar-mode/keyword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/cb-yasnippet/snippets/wisent-grammar-mode/keyword -------------------------------------------------------------------------------- /stallman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisbarrett/spacemacs-layers/HEAD/stallman.jpg --------------------------------------------------------------------------------