Start properly namespacing config packages
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Waiting to run
This commit is contained in:
parent
667d565062
commit
8a4471b1da
6 changed files with 19 additions and 16 deletions
14
pkg/avy.el
14
pkg/avy.el
|
|
@ -1,14 +0,0 @@
|
|||
;;; avy.el --- summary -*- lexical-binding: t; -*-
|
||||
|
||||
;; Author: Maciej Szlosarczyk
|
||||
;; Maintainer: Maciej Szlosarczyk
|
||||
;; Version: 0.1-snapshot
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Avy is a navigation manager.
|
||||
|
||||
;;; Code:
|
||||
(use-package avy :straight t :defer t)
|
||||
(provide '+custom-pkg-avy)
|
||||
;;; avy.el ends here
|
||||
|
|
@ -14,8 +14,9 @@
|
|||
:config
|
||||
(unbind-key "C-c & C-n" yas-minor-mode-map)
|
||||
(unbind-key "C-c & C-s" yas-minor-mode-map)
|
||||
(unbind-key "C-c & C-v" yas-minor-mode-map)
|
||||
(yas-global-mode t))
|
||||
(unbind-key "C-c & C-v" yas-minor-mode-map))
|
||||
|
||||
(yas-global-mode t)
|
||||
|
||||
(use-package company
|
||||
:commands (company-indent-or-complete-common company-yasnippet)
|
||||
|
|
|
|||
|
|
@ -53,8 +53,10 @@
|
|||
:straight t
|
||||
:defer t
|
||||
:config
|
||||
(add-to-list 'dash-at-point-mode-alist '(enh-ruby-mode . "ruby,rubygems,rails"))
|
||||
(add-to-list 'dash-at-point-mode-alist '(elixir-ts-mode . "elixir,hex")))
|
||||
(add-to-list 'dash-at-point-mode-alist
|
||||
'(enh-ruby-mode . "ruby,rubygems,rails"))
|
||||
(add-to-list 'dash-at-point-mode-alist
|
||||
'(elixir-ts-mode . "elixir,hex")))
|
||||
|
||||
;; By default, use 2 spaces for indentation
|
||||
(setq tab-width 2)
|
||||
|
|
|
|||
|
|
@ -1,19 +0,0 @@
|
|||
;;; speed-type.el --- summary -*- lexical-binding: t; -*-
|
||||
|
||||
;; Author: Maciej Szlosarczyk
|
||||
;; Maintainer: Maciej Szlosarczyk
|
||||
;; Version: 0.1-snapshot
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; speed-type teaches you how to type.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(use-package speed-type
|
||||
:straight t
|
||||
:ensure t
|
||||
:defer t)
|
||||
|
||||
(provide '+custom-pkg-speed-type)
|
||||
;;; speed-type.el ends here
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
;;; Global Transient definitions.
|
||||
;;; Code:
|
||||
|
||||
(require '+custom-pkg-avy "$HOME/.emacs.d/pkg/avy.el")
|
||||
(require 'icejam-avy)
|
||||
|
||||
(use-package transient :straight t)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue