Aryadev Chavali c64708aaaa (Emacs/elisp)~massively reworked bookmarking system
Now it can:
- cache results until bookmarks file is modified, so we don't need to
open the file again if we've already figured everything out.  This is
in-memory and not as a file

- a proper dispatching list which has pairs of form (PATTERNS . FUNC)
so the dispatching system is a bit more abstract and easier to add to

- use a URL property in org headings to get the bookmark URL rather
than having it as part of the body of the entry.  This means the body
is now free to house any content without affecting the overall
function of the system, such as notes or subtrees for related
bookmarks.
2024-06-11 16:56:52 +01:00
2024-04-18 15:25:58 +06:30
2020-07-07 00:29:26 +01:00
2024-06-11 01:24:10 +01:00
2020-06-06 19:37:00 +01:00
2023-04-25 13:00:25 +01:00
2021-08-24 17:35:36 +01:00
2020-06-27 10:58:21 +01:00
2024-06-11 01:24:10 +01:00
2024-05-08 01:32:06 +05:30
2024-05-08 00:00:38 +05:30
2024-04-20 02:52:27 +05:30
2023-03-19 17:55:34 +00:00
2024-06-11 01:24:10 +01:00
2023-09-29 22:40:08 +01:00
2024-05-08 01:35:47 +05:30
2024-05-13 17:33:16 +05:30
2024-04-23 17:08:42 +05:30
2024-05-13 17:34:57 +05:30

Dotfiles

This repository contains all of my custom configurations for programs I use daily.

Setup and installation

  1. Clone this repository to ~/Dotfiles
  2. Construct the following directories:

    • ~/.local

      • src
      • bin
      • lib
      • share
    • ~/.config
    • ~/Downloads
    • ~/Code
    • ~/Media
    • ~/Projects
  3. Install GNU/stow
  4. Pick and choose what configurations you want

    • To install a module use stow <module>
    • To remove a module use stow -D <module>

GNU/stow just makes it easier to instruct a new user on what to do: you can just setup symlinks from a given module to the root directory yourself.

Emacs archives

At https://aryadevchavali.com/resources/ I maintain a compressed backup of some of ~/.config/emacs. The purpose of this is simply to escape having to clone this repository just to be able to use my editor: I can just copy then uncompress this backup to get a just-about-working version of my Emacs without having to do any further work. It isn't so I can have a completely working system, just some comfort in an otherwise potentially alien environment.

This script generates the archive:

tar -Jcvf emacs-config.tar.xz \
    ~/.config/emacs/config.org \
    ~/.config/emacs/early-init.el \
    ~/.config/emacs/init.el \
    ~/.config/emacs/elisp/ \
    ~/.config/emacs/straight/

And this script sends it over via rsync

rsync -avz --info=progress2 --info=name0 emacs-config.tar.xz \
      root@aryadevchavali.com:/var/www/html/resources

Installing Emacs

I like a specific set of flags on my Emacs install, and my configuration kind of depends on them existing as well. Prepackaged installs just won't cut it. So I'd highly recommend cloning and building my personal Emacs repo (currently v29).

Or just run the following lines:

cd ~/.local/src;
git clone git@github.com:oreodave/emacs-29-custom emacs;
cd emacs;
sh personal-install; # Will configure, build and attempt to install
Description
No description provided
Readme MIT 3.8 MiB
Languages
Emacs Lisp 74%
Shell 10.1%
YASnippet 8.5%
Python 5.9%
Lua 1.5%