Giter Site home page Giter Site logo

emrc's Introduction

A repo for metapackages

How to use

  • tangle this file to init.el `M-x org-babel-tangle`
  • edit the latter according to your needs
  • test it with your Emacs installation, you can even run it from `M-x eshell`
    emacs -q -l init.el
        
  • put it in your `~/.emacs.d/init.el` if everything is OK

Prerequisites

By default, Emacs knows about GNU ELPA only, add some more repositories.

(require 'package)
(setq package-archives
      `(,@package-archives
        ("melpa" . "https://melpa.org/packages/")
        ;; ("marmalade" . "https://marmalade-repo.org/packages/")
        ("org" . "https://orgmode.org/elpa/")
        ;; ("user42" . "https://download.tuxfamily.org/user42/elpa/packages/")
        ;; ("emacswiki" . "https://mirrors.tuna.tsinghua.edu.cn/elpa/emacswiki/")
        ;; ("sunrise" . "http://joseito.republika.pl/sunrise-commander/")
        ))
(package-initialize)

Use-package can’t install itself so we have to bootstrap it

(setq package-enable-at-startup nil)

(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))

(eval-when-compile
  (require 'use-package))

(put 'use-package 'lisp-indent-function 1)
(setq use-package-always-ensure t)

Install Quelpa, so we can install packages directly from their sources

(use-package quelpa)
(use-package quelpa-use-package)

Here goes the list and an example(-es?) of usage

emrc-default

(use-package emrc-defaults
  :ensure nil
  :quelpa (emrc-defaults :repo "EmacsRuPub/emrc"
                         :fetcher github
                         :files ("emrc-defaults.el")))

emrc-dired

(use-package emrc-dired
  :ensure nil
  :quelpa (emrc-dired :repo "EmacsRuPub/emrc"
                      :fetcher github
                      :files ("emrc-dired.el")))

emrc-completion-ivy

(use-package emrc-completion-ivy
  :ensure nil
  :quelpa (emrc-completion-ivy :repo "EmacsRuPub/emrc"
                         :fetcher github
                         :files ("emrc-completion-ivy.el")))

Where to get good ideas

emrc's People

Contributors

a13 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

adrianparvino

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.