You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

723 B

Dev

Package

Define dev package.

  (use-package emacs
    :after uno
    :config
    (provide 'uno-dev))

EditorConfig

Automatically configure coding styles.

  (use-package editorconfig
    :after uno-dev
    :config
    (editorconfig-mode 1))

Keychain

Set up integration with keychain.

  (use-package keychain-environment
    :after uno-dev
    :config
    (keychain-refresh-environment))

Debug Adapter Protocol

  (use-package emacs
    :after (dap-mode uno-dev)
    :custom
    (dap-breakpoints-file (uno-cache-path ".dap-breakpoints")))