aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-04-16(Emacs/config)~Makefile auto insert now generates dependenciesAryadev Chavali
Using -M* options in gcc and clang we can generate dependencies for C files which can be used by make to rebuild files based on other files.
2024-04-16(Emacs/config)+wgrep binding to grep-mode-mapAryadev Chavali
2024-04-16(Emacs/app)+eshell command that goes to `projectile-project-root` if it existsAryadev Chavali
2024-04-16(Emacs/app)~Made eshell prompt a bit coolerAryadev Chavali
Now it shows if the worktree is unclean and how many commits ahead or behind we are from the remote (if one is set).
2024-04-14(Emacs/core)+evil-numbers packagesAryadev Chavali
Increment/decrement number at point. Something from vim which is quite nice.
2024-04-14(Emacs/config)~g is not bound in compilation-mode-mapAryadev Chavali
This means I can use, say, ~gg~ to go to the top of the buffer without recompiling.
2024-04-12(Emacs/app)+ERC (irc client for Emacs)Aryadev Chavali
2024-04-12(Emacs/config)+some bindingsAryadev Chavali
Recompile is now c instead of g
2024-04-09(Emacs/init)~updated straight.el in bootstrapAryadev Chavali
The URL for bootstrap.el has changed as a result of straight now being under a group rather than a user. Just means I need to change it here. While doing so, I update the bootstrap version as well.
2023-10-22(Emacs)+sly bindings and some other stuffAryadev Chavali
2023-10-21(Emacs/config)~Moved save-hist configuration to Small packagesAryadev Chavali
2023-10-21(Emacs/app)+eww bindings for copying urlsAryadev Chavali
2023-10-21(Scripts/status)~Changed emoticonsAryadev Chavali
2023-10-21(SXHkD)-super + shift + s bindingAryadev Chavali
Conflicts with new DWM binding for fibonacci layout.
2023-10-21(Emacs/personal-primary-theme)~changed fonts for string and typeAryadev Chavali
2023-10-21(Emacs/core)~sort general leadersAryadev Chavali
2023-10-21(Emacs/config)+function to search config org headingsAryadev Chavali
2023-10-21(Emacs/config)+savehist configurationAryadev Chavali
2023-10-21(Emacs/app)~disable xwidgetsAryadev Chavali
Not useful
2023-10-18(Scripts)~Prefix every notify-send with script creating itAryadev Chavali
2023-10-18(Scripts|SystemD)+mail fetch script and a SystemDservice/timer for itAryadev Chavali
Syncs every 3 hours. Produces a notify-send message on fetching.
2023-10-16(Emacs/config)+enable caching in projectileAryadev Chavali
Fixes issue where opening a project for the first time via "SPC-p-p" then selecting a file was very laggy.
2023-10-16(Emacs/config)~disable esup by defaultAryadev Chavali
Only when I'm doing an optimising job do I need esup. Shouldn't need it otherwise.
2023-10-16(Emacs/config|init)~heavily optimised startup timeAryadev Chavali
Used esup to figure out some points of pain, then fixed them. Also set gc-cons-threshold at start of init.el really high, then reset after finished loading.
2023-10-16(Emacs/config)~cleaned some markup, +memory-report bindAryadev Chavali
2023-10-15(Emacs/config)+introductionAryadev Chavali
2023-10-15Update READMEAryadev Chavali
2023-10-15(Emacs/app)+Image-mode configurationAryadev Chavali
2023-10-15(Emacs/app)~fix some issues with smtpmailAryadev Chavali
Need to set it up before using it, so I can't lazy load the configuration.
2023-10-15(Emacs|NeoVim|Shell)~small changes and minor updatesAryadev Chavali
2023-10-14(Emacs/app)~clean up and extend eshell configurationAryadev Chavali
+ Eshell prompt has nice colours now instead of just the flat blue ~ Generally cleaned up the configuration + Eshell aliases into version control
2023-10-14(Emacs/app)~dired switches now sort by timeAryadev Chavali
2023-10-14(Emacs)~changed unicode characters for :pretty displayAryadev Chavali
2023-10-14(Emacs)~fix bug in personal-primary, line-numbers didn't work with zoomAryadev Chavali
Just inherit from default
2023-10-14(SXHkD)~Print now does a selected screenshotAryadev Chavali
ScrollLock already does the task of reconnecting the network: no reason to duplicate function. This is something I usually have to pop out a terminal for, so I may as well make a binding for it.
2023-10-06(Emacs)~magit copies abbreviated section values in logAryadev Chavali
2023-10-06(Emacs)+function +org/search-headings, cc-mode auto insert uses new license.elAryadev Chavali
2023-10-06(Shell)~zshrc: alias ls with --group-directories-firstAryadev Chavali
2023-10-06(Emacs)~license.el separates pure string functions from interactiveAryadev Chavali
2023-10-06(Emacs)+Elisp archive, (Scripts/status)+bluetooth statusAryadev Chavali
2023-10-06(Scripts|SystemD)~rework backup systemAryadev Chavali
This is purely for the desktop: only enable if you fix it up.
2023-10-02(Emacs)~dir-localsAryadev Chavali
2023-10-02(Emacs)+dict bindingsAryadev Chavali
2023-09-29(Emacs)~little cleanAryadev Chavali
2023-09-29(Emacs)~fixed bug where boot up time in scratch buffer was wrongAryadev Chavali
I'm pretty sure we should be figuring this out after init, which is why I put made a hook to insert the message when it would actually be accurate.
2023-09-29(Emacs)~config->app,coreAryadev Chavali
The two largest sections of my config are separated into their own files now. Does increase init time, but I just can't handle how big this thing is. It'll be a bit nicer to look at and manage with separate files.
2023-09-29(Emacs)~more safe valuesAryadev Chavali
2023-09-29(Emacs)~whitespaceAryadev Chavali
2023-09-29(Emacs)~ivy config uses :initAryadev Chavali
2023-09-29(Emacs)~Makefile autoinsert now does dependency trackingAryadev Chavali
Figured this out during stack-vm.c development: a way for Makefiles to do proper dependency tracking using gcc's option -MMD.