aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config
AgeCommit message (Collapse)Author
2023-09-28(Emacs)~C/C++ skeleton now inserts a copyright notice.Aryadev Chavali
2023-09-28(Emacs)~setup licensing as early as possibleAryadev Chavali
This is so I can use it later on.
2023-09-28(Emacs)~no-littering is setup in init.elAryadev Chavali
This solves the bug with custom.el where it randomly resets and forgets what I setup there already. Found this out through the custom.el info, where setting a custom file yourself requires loading it in post.
2023-09-28(Emacs)+binding for copyright noticeAryadev Chavali
2023-09-28(dir-locals|Emacs)+license choice into dir-localsAryadev Chavali
2023-09-28(Emacs)~license.el now has a function to insert copyright noticesAryadev Chavali
For the top of source code blocks.
2023-09-28(Emacs)+licensing scriptAryadev Chavali
I manage my own alist of Licenses, which I can completing-read for. I should also define something to produce a copyright notice.
2023-09-22(Emacs)+org-refile binding \-rAryadev Chavali
2023-09-22(Emacs)+rot13 mode, +use-file-dialog=nil, +dired-dwim-target=tAryadev Chavali
2023-09-22(Emacs)~modified keybindingsAryadev Chavali
Main one is "<SPC>-g" being magit-dispatch now.
2023-09-22(Emacs)~custom.el has safe values for projectile-*-cmdAryadev Chavali
2023-09-22(Emacs)~modified switch snippet in c/cc-modeAryadev Chavali
2023-09-22(Emacs)~fixed an error with using the inbuilt org-mode in init.elAryadev Chavali
2023-09-22(Emacs)~literate now actually checks if compilation is necessaryAryadev Chavali
Just realised how easy a fix this is to the 2 second wait time for Emacs to stop. Checking if the org files are newer than the compiled files, and the same for byte compilation, ensures I only compile when necessary. This actually makes Emacs kinda appealing for quick work: I kinda cringed every time I launched Emacs without a server because I knew it would take *so long* to stop it. Now that isn't as big a concern!
2023-09-10(Emacs)~disabled org fragtog for nowAryadev Chavali
2023-09-10(Emacs)~small changesAryadev Chavali
2023-09-10(Emacs)+gif-screencast for funny screencastsAryadev Chavali
2023-09-07(Emacs)+light theme version of personalAryadev Chavali
Bit old though.
2023-09-07(Emacs)~some sly bindingsAryadev Chavali
2023-09-07(Emacs)+bindings for ivy-occurAryadev Chavali
evil-collection going weird here, so decided to roll my own keybinds.
2023-09-07(Emacs)~description changes and Makefile autoinsertAryadev Chavali
2023-08-25(Emacs)~Makefile auto insert now has LIBS variable,-memcheck recipeAryadev Chavali
2023-08-25(Emacs)+c/C++ no longer have aggressive indentAryadev Chavali
`clang-format-mode` does the same thing for me in C/C++, and they usually conflict.
2023-08-20(Emacs)+code blaming binding using magitAryadev Chavali
Very cool ability.
2023-08-20(Emacs)~small changesAryadev Chavali
+key bind for normal/motion map in Info to follow nodes easily ~:display record for helpful ~some text in calc-mode ~undo tree saves in the same place as backups ~problems with compilation mode's recompile, evil collection is starting to not work, so bind it myself ~fix :auto-insert record for Makefiles: quote at the end stops it from matching ~org-latex-listings->org-latex-src-block-backend new org mode
2023-08-20(Emacs)+module configuration for man pagesAryadev Chavali
Found out why I can't just use ':display' records to manage displaying of man pages, made some binds as well. Useful for writing C code.
2023-08-20(Emacs)~mode line now pads vc informationAryadev Chavali
2023-08-20(Emacs)~dashboard -> scratch bufferAryadev Chavali
Back to basics.
2023-08-20(Emacs)-calctexAryadev Chavali
Removed calctex: super buggy, have to set a specific version to use and honestly not even that useful for all the bloat it's carrying.
2023-08-20(Emacs)+working on an async compilation funcAryadev Chavali
2023-07-14(Emacs)~cleaned up literate.elAryadev Chavali
Jesus, how could I have not noticed the spelling error in "Finishied byte compiling"?!
2023-07-14(Emacs)+org capture configurationAryadev Chavali
Made some templates and configured it.
2023-07-14(Emacs)~clean up some code and descriptionsAryadev Chavali
2023-07-13(Emacs)~change commit message auto insertAryadev Chavali
Use the :auto-insert keyword.
2023-07-13(Emacs)~cleaned up some textAryadev Chavali
2023-07-13(Emacs)~mv Compilation->Programming,~cleaned headingsAryadev Chavali
2023-07-13(Emacs)+:auto-insert use-package keywordAryadev Chavali
Defines an auto-insert skeleton using the same schema as ~auto-insert-alist~. This makes the configuration more modular and the auto-inserts closer to the packages/modes they actually matter in.
2023-07-13(Emacs)~mode line is done by handAryadev Chavali
The evaluation system was really just an excuse for me to try and write some Lisp code when I was first learning it; the inclusion of (vc-mode vc-mode) meant I couldn't utilise it the way I wanted.
2023-07-13(Emacs)~clean up some custom functionsAryadev Chavali
2023-07-13(Emacs)~let/while -> mapcar for :pretty use-packageAryadev Chavali
Same idiomatic change for use-package handling. Should've realised this earlier.
2023-07-13(Emacs)~any headings which are untangled get a WIP tagAryadev Chavali
Any headings with a properties setup to force Emacs not to tangle them i.e. I'm actively *not* using those packages should get a WIP tag. This means I can look over my configuration for dead trees when eventually doing a cleanup.
2023-07-11(Emacs)+some more racket configurationAryadev Chavali
Picked up racket lang again, decided to make the experience a bit better for myself.
2023-07-11(Emacs)+auto-insert for LICENSE filesAryadev Chavali
Just the MIT license, assuming that will be the thing I use by default. Maybe I should make a Emacs Lisp function which can insert a license of my choice directly?
2023-07-11(Emacs)~minor changes to some spelling and wordsAryadev Chavali
2023-07-11(Emacs)~made :display use-package manager more idiomaticAryadev Chavali
When I originally programmed this function I was essentially acting as a code-monkey i.e. "JUST WORK PLEASE". Looking at the code now I see there's a simple function to do essentially the same task, converting from the iterative format I was using to the cleaner and more functional ~mapcar~.
2023-06-22(Emacs)+d-mode,~org-babel-load-languages alist changesAryadev Chavali
+Emacs-d-mode ~C, Python sections update org-babel-load-languages themselves, for cleaner code
2023-06-10(Emacs)~loads of indenting changes and auto-save changesAryadev Chavali
2023-05-05(Emacs)~stuffAryadev Chavali
2023-04-25(*)~changesAryadev Chavali
2023-04-25(Emacs)~split literate config into separate fileAryadev Chavali