All Projects → vedang → emacs-up

vedang / emacs-up

Licence: other
My emacs configuration files

Programming Languages

emacs lisp
2029 projects
YASnippet
69 projects

Projects that are alternatives of or similar to emacs-up

.emacs.d
Vanilla, Evil, literate Emacs configuration
Stars: ✭ 62 (+169.57%)
Mutual labels:  org-mode, org-mode-configuration
sword-to-org
Convert Sword modules to Org-mode outlines
Stars: ✭ 32 (+39.13%)
Mutual labels:  org-mode
org-hexo
[DEPRECATE] Convert your org-mode blog to hexo markdown file
Stars: ✭ 20 (-13.04%)
Mutual labels:  org-mode
zshorg
org-mode literate programming zsh config
Stars: ✭ 17 (-26.09%)
Mutual labels:  org-mode
copy-as-org-mode
A Firefox Add-on (WebExtension) to copy selected web page into Org-mode formatted text!
Stars: ✭ 138 (+500%)
Mutual labels:  org-mode
counsel-org-clock
Counsel (Ivy) interface for org-clock
Stars: ✭ 44 (+91.3%)
Mutual labels:  org-mode
OrgMode.jl
A Julia library for working with Org.
Stars: ✭ 52 (+126.09%)
Mutual labels:  org-mode
org-onenote
Post org file to onenote
Stars: ✭ 40 (+73.91%)
Mutual labels:  org-mode
organic
Outliner, organizer and notes management app.
Stars: ✭ 37 (+60.87%)
Mutual labels:  org-mode
bog
Extensions for research notes in Org mode
Stars: ✭ 57 (+147.83%)
Mutual labels:  org-mode
orgmdb.el
An Emacs/org-mode watchlist manager and OMDb API client
Stars: ✭ 17 (-26.09%)
Mutual labels:  org-mode
org-toggl-py
Create Toggl entries from Emacs org-mode CLOCK entries
Stars: ✭ 41 (+78.26%)
Mutual labels:  org-mode
notes
just notes
Stars: ✭ 21 (-8.7%)
Mutual labels:  org-mode
gcal
Google Calendar Utilities for Emacs
Stars: ✭ 12 (-47.83%)
Mutual labels:  org-mode
vimwiki2org
Convert VimWiki files to Emacs Org-Mode
Stars: ✭ 18 (-21.74%)
Mutual labels:  org-mode
org-outer-indent
An outer indentation org mode
Stars: ✭ 25 (+8.7%)
Mutual labels:  org-mode
github-orgmode-tests
This is a test project where you can explore how github interprets Org-mode files
Stars: ✭ 126 (+447.83%)
Mutual labels:  org-mode
phscroll
Enable partial horizontal scroll in Emacs
Stars: ✭ 52 (+126.09%)
Mutual labels:  org-mode
ob-tmux
Ob-tmux is an Emacs library that allows org mode to evaluate code blocks in a tmux session.
Stars: ✭ 46 (+100%)
Mutual labels:  org-mode
org-agda-mode
An Emacs mode for working with Agda code in an Org-mode like fashion, more or less.
Stars: ✭ 14 (-39.13%)
Mutual labels:  org-mode

Emacs Up: an extensible, easy way to maintain emacs config for your coding needs.

This starter kit provides:

  1. Working and well-tuned configurations for:
    • Clojure Programming (CIDER + other minor modes)
    • Emacs Lisp Programming (ElSpice + other minor modes)
    • Note-taking and Task-tracking through Org Mode
    • Rust Programming
    • JS Programming
    • Email through Emacs (Notmuch + mbsync + msmtp)
  2. Other minor but important additions:
    • Avy Mode (Jumping and Navigation)
    • Company Mode (Completion)
    • Helm Mode (Navigation)
    • Magit (Git Interface)
    • Multiple Cursors (Editing)
    • Paredit and Parinfer (Editing Lispy things)
    • YASnippets (Templating and Boiler Plate)
    • Correct path manipulation on OS X (System)
  3. Better defaults than “pure” Emacs. And a number of other small but beautiful packages.

Pre-requisites

The following tools should be installed and available on the system:

Make sure that they are on $PATH. If you are on a Mac, git needs to be available at /usr/local/bin/git.

  1. On a Mac, these can all be installed through Homebrew as follows:
    brew install git mercurial aspell automake texinfo subversion shellcheck
        
  2. On Ubuntu, these can all be installed through Apt as follows:
    apt install git mercurial aspell automake texinfo subversion shellcheck
        

The following tools are optional, but recommended / needed for particular modes to work correctly.

  • notmuch: My preferred email client.
  • prettier: Provides formatting of JS code on save.
  • delta: Beautiful and fast diff tool.
  • zoxide: A smarter cd command
  • clj-kondo: A linter for Clojure code that sparks joy.
  • cljstyle: A tool for formatting Clojure code.

First-time installation instructions / Optional Pre-requisites

Org Mode:

For org-mode to work, you’ll have to set your org-directory. To do this, add the line

(setq org-directory "/path/to/org/directory")

somewhere in your Emacs config. I recommend that you create the file ~~/.emacs.d/personal.el~ and add the code to that file.

For more information about the org config, take a look at vedang/org-mode-crate

Clojure interactive development through Cider

cider needs a one time setup of cider-nrepl, refactor-nrepl middleware in order to work properly. Please follow the installation instructions in the respective repos to install cider-nrepl and refactor-nrepl.

Rust development

Rust integration depends on rustic and rust-analyzer (LSP) for it’s functionality. Refer to the following documents for instructions:

  • Install Rustup. This will also install cargo, the build tool and package manager for Rust.
  • Install Rust Analyzer. Rust uses rust-analyzer as the LSP backend to provide information to editors.
  • Install Rust Source
    rustup component add rust-src
        

If you do not wish to install Rust specific recipes, go to features.el in the main directory and set the value of configure-rust-p to nil.

Golang development

Go integration uses gopls (LSP) for working with Go Code.

Python interactive development through Elpy

These set of recipes are turned off by default. If you wish to install Python specific recipes, go to features.el in the main directory and set the value of configure-python-p to t.

Elpy needs a one-time setup of Python packages. Please follow the installation instructions on the Elpy Page.

Scheme development

These set of recipes are turned off by default. If you wish to install Scheme specific recipes, go to features.el in the main directory and set the value of configure-scheme-p to t.

Scheme integration is provided or Chicken Scheme, and interactive development is implemented through Geiser. Refer this document for instructions to install Chicken Scheme. On a Mac, it can be easily installed through Homebrew using:

brew install chicken

Installation Instructions

  1. Clone the repository and move it to your .emacs.d folder
    $ cd /tmp/
    $ git clone https://github.com/vedang/emacs-up.git
    $ mv emacs-up ~/.emacs.d
        
  2. Make sure you’ve followed the One-Time installation instructions before proceeding.
  3. Start Emacs. Make yourself a cup of tea.

    The first boot will trigger a (one-time) download of all the packages that Emacs-Up needs. This can take a lot of time.

    Sometimes (rarely) Emacs will stop and throw an error. If this happens, try re-starting Emacs. If the error is still being thrown, file an issue with me. Don’t forget to include the stacktrace. Don’t worry, your perfect environment is being baked with love.

  4. Profit!

Post Installation instructions

All the Icons

This configuration installs all-the-icons for pretty icons. All the Icons requires special fonts to be installed, which can be done with M-x all-the-icons-install-fonts

Upgrade Instructions

  1. Close running emacs session
  2. Fetch the latest changes from vedang/emacs-up
  3. Start emacs and run the following code:
    M-x el-get-self-update
    M-x el-get-update-all
        
  4. Restart emacs
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].