Namespace packages
This commit is contained in:
parent
a09b7edebe
commit
185c112890
41 changed files with 177 additions and 177 deletions
|
|
@ -2,9 +2,9 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-projectile "$HOME/.emacs.d/pkg/projectile.el")
|
||||
(require 'icejam-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-projectile "$HOME/.emacs.d/pkg/projectile.el")
|
||||
(require '+custom-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(defun activate-clang-mode ()
|
||||
"Goodies for editing c files."
|
||||
|
|
@ -32,5 +32,5 @@
|
|||
|
||||
(add-hook 'c-mode-hook 'activate-clang-mode)
|
||||
|
||||
(provide 'icejam-lang-clang)
|
||||
(provide '+custom-lang-clang)
|
||||
;;; clang.el ends here
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
|
||||
(use-package clojure-mode
|
||||
:defer t
|
||||
|
|
@ -62,5 +62,5 @@ Cider: _j_: Jack in _t_: Test
|
|||
(add-hook 'cider-repl-mode-hook 'my-clj-repl-config)
|
||||
(add-hook 'cider-mode-hook #'cider-company-enable-fuzzy-completion)
|
||||
|
||||
(provide 'icejam-lang-clojure)
|
||||
(provide '+custom-lang-clojure)
|
||||
;;; clojure.el ends here
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(defun activate-emacs-lisp-mode ()
|
||||
"Goodies for editing Emacs files."
|
||||
|
|
@ -16,5 +16,5 @@
|
|||
|
||||
(add-hook 'emacs-lisp-mode-hook 'activate-emacs-lisp-mode)
|
||||
|
||||
(provide 'icejam-lang-elisp)
|
||||
(provide '+custom-lang-elisp)
|
||||
;;; elisp.el ends here
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require 'icejam-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
|
||||
(use-package elixir-mode
|
||||
:requires (lsp-mode lsp-ui)
|
||||
|
|
@ -43,5 +43,5 @@ Other: _m_: iMenu
|
|||
|
||||
(add-hook 'elixir-mode-hook 'activate-elixir-mode)
|
||||
|
||||
(provide 'icejam-lang-elixir)
|
||||
(provide '+custom-lang-elixir)
|
||||
;;; elixir.el ends here
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(use-package erlang
|
||||
:defer t
|
||||
|
|
@ -109,5 +109,5 @@
|
|||
|
||||
(add-hook 'erlang-mode-hook 'erlang/activate-erlang-mode)
|
||||
|
||||
(provide 'icejam-lang-erlang)
|
||||
(provide '+custom-lang-erlang)
|
||||
;;; erlang.el ends here
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
|
||||
(use-package fsharp-mode
|
||||
:requires (lsp-mode lsp-ui)
|
||||
|
|
@ -46,5 +46,5 @@ _i_: Indent buffer _m_: iMenu
|
|||
|
||||
(add-hook 'fsharp-mode-hook 'activate-fsharp-mode)
|
||||
|
||||
(provide 'icejam-lang-fsharp)
|
||||
(provide '+custom-lang-fsharp)
|
||||
;;; fsharp.el ends here
|
||||
|
|
|
|||
|
|
@ -14,5 +14,5 @@
|
|||
:straight `(gleam-mode :type git :host github :repo "gleam-lang/gleam-mode")
|
||||
:mode "\\.gleam\\'")
|
||||
|
||||
(provide 'icejam-lang-gleam)
|
||||
(provide '+custom-lang-gleam)
|
||||
;;; gleam.el ends here
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require 'icejam-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
|
||||
(use-package haskell-mode
|
||||
:straight t
|
||||
|
|
@ -53,5 +53,5 @@ _i_: Indent buffer _m_: iMenu
|
|||
|
||||
(add-hook 'haskell-mode-hook 'activate-haskell-mode)
|
||||
|
||||
(provide 'icejam-lang-haskell)
|
||||
(provide '+custom-lang-haskell)
|
||||
;;; haskell.el ends here
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require 'icejam-pkg-lsp "$HOME/.emacs.d/pkg/lsp.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-lsp "$HOME/.emacs.d/pkg/lsp.el")
|
||||
|
||||
(use-package js2-mode
|
||||
:requires (web-mode company-web lsp-mode lsp-ui)
|
||||
|
|
@ -45,5 +45,5 @@
|
|||
(add-hook 'js2-mode-hook 'activate-js2-mode)
|
||||
(add-hook 'vue-mode-hook 'lsp)
|
||||
|
||||
(provide 'icejam-lang-javascript)
|
||||
(provide '+custom-lang-javascript)
|
||||
;;; javascript.el ends here
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
|
||||
(use-package markdown-mode
|
||||
:straight t
|
||||
|
|
@ -23,5 +23,5 @@
|
|||
|
||||
(add-hook 'markdown-mode-hook 'activate-markdown-mode)
|
||||
|
||||
(provide 'icejam-lang-markdown)
|
||||
(provide '+custom-lang-markdown)
|
||||
;;; markdown.el ends here
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
(require '+custom-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
|
||||
(use-package tuareg
|
||||
:defer t
|
||||
|
|
@ -95,5 +95,5 @@ _o_: Update opam env
|
|||
(add-hook 'reason-mode-hook 'my-reason-mode)
|
||||
(add-hook 'reason-mode-hook 'merlin-mode)
|
||||
|
||||
(provide 'icejam-lang-ocaml)
|
||||
(provide '+custom-lang-ocaml)
|
||||
;;; ocaml.el ends here
|
||||
|
|
|
|||
|
|
@ -25,5 +25,5 @@
|
|||
:hook ((gitignore-mode . whitespace-mode)
|
||||
(before-save . whitespace-cleanup)))
|
||||
|
||||
(provide 'icejam-lang-other)
|
||||
(provide '+custom-lang-other)
|
||||
;;; other.el ends here
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require 'icejam-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-hydra "$HOME/.emacs.d/pkg/hydra.el")
|
||||
|
||||
(use-package php-mode
|
||||
:requires (lsp-mode lsp-ui)
|
||||
|
|
@ -45,5 +45,5 @@ _i_: Indent buffer _m_: iMenu
|
|||
|
||||
(add-hook 'php-mode-hook 'activate-php-mode)
|
||||
|
||||
(provide 'icejam-lang-php)
|
||||
(provide '+custom-lang-php)
|
||||
;;; php.el ends here
|
||||
|
|
|
|||
|
|
@ -27,5 +27,5 @@
|
|||
|
||||
(add-hook 'purescript-mode-hook 'activate-purescript-mode)
|
||||
|
||||
(provide 'icejam-lang-purescript)
|
||||
(provide '+custom-lang-purescript)
|
||||
;;; purescript.el ends here
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-projectile "$HOME/.emacs.d/pkg/projectile.el")
|
||||
(require 'icejam-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-projectile "$HOME/.emacs.d/pkg/projectile.el")
|
||||
(require '+custom-pkg-ctags "$HOME/.emacs.d/pkg/ctags.el")
|
||||
|
||||
(use-package rspec-mode :straight t :defer t)
|
||||
(use-package ruby-end :straight t :defer t)
|
||||
|
|
@ -40,5 +40,5 @@
|
|||
'(rspec-install-snippets))
|
||||
(add-hook 'enh-ruby-mode-hook 'activate-ruby-mode)
|
||||
|
||||
(provide 'icejam-lang-ruby)
|
||||
(provide '+custom-lang-ruby)
|
||||
;;; ruby.el ends here
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-prog-mode "$HOME/.emacs.d/pkg/prog-mode.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
|
||||
(use-package rust-mode
|
||||
:straight t
|
||||
|
|
@ -36,5 +36,5 @@
|
|||
(add-hook 'rust-mode-hook 'flycheck-rust-setup)
|
||||
(add-hook 'rust-mode-hook 'racer-mode)
|
||||
|
||||
(provide 'icejam-lang-rust)
|
||||
(provide '+custom-lang-rust)
|
||||
;;; rust.el ends here
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@
|
|||
(add-to-list 'auto-mode-alist '("\\zshrc\\'" . sh-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.zshrc\\'" . sh-mode))
|
||||
|
||||
(provide 'icejam-lang-sh)
|
||||
(provide '+custom-lang-sh)
|
||||
;;; sh.el ends here
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
(require 'icejam-pkg-lsp "$HOME/.emacs.d/pkg/lsp.el")
|
||||
(require 'icejam-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
(require '+custom-pkg-lsp "$HOME/.emacs.d/pkg/lsp.el")
|
||||
(require '+custom-pkg-flycheck "$HOME/.emacs.d/pkg/flycheck.el")
|
||||
|
||||
(use-package web-mode
|
||||
:requires (lsp-mode flycheck)
|
||||
|
|
@ -47,5 +47,5 @@
|
|||
|
||||
(add-hook 'web-mode-hook 'activate-web-mode)
|
||||
|
||||
(provide 'icejam-lang-web)
|
||||
(provide '+custom-lang-web)
|
||||
;;; web.el ends here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue