aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/config.org
AgeCommit message (Collapse)Author
2023-03-26(Emacs)~made sys-name-cond nicer to readAryadev Chavali
I used an iterative style for it before, but now its more functional as there is a 1-1 mapping between pairs given and cond forms.
2023-03-26(Emacs)~major refactor to bindingsAryadev Chavali
Instead of using leader for everything, with infixes, I create custom definers for each prefix root. This is along with better which key strings and makes the code easier to read: instead of setting up several bindings across all namespaces I must define each binding in its respective leader.
2023-03-26(Emacs)~fixing some documentationAryadev Chavali
Cleaner text and more dividing particularly in the previous sections.
2023-03-26(Emacs)+aggressive indent, ~moved around compilationAryadev Chavali
2023-03-26(Emacs)~fixed wrong variable error in +oreo/create-toggle-functionAryadev Chavali
2023-03-19(Emacs)~lots of changes to configAryadev Chavali
+ save place + global auto revert - +pretty/* functions + esup + some randomised messages for dashboard footer + some eshell functionality ~ disabled ada mode + tons of bindings for org tables
2022-11-24(*)~few changes, not massiveAryadev Chavali
2022-10-11(Emacs)~change pdf-tools recipeAryadev Chavali
2022-10-11(Emacs)~changed a lot of stuffAryadev Chavali
+org-ref +xref config ~descriptions
2022-09-17(Emacs)+dired bind for dired-create-empty-fileAryadev Chavali
2022-09-17(Emacs)+org template for blog posts, ~rearranged org modeAryadev Chavali
2022-09-17(Emacs)+org-startup-folded set to 'contentAryadev Chavali
Now I don't get flooded by information when I open an org file, just headings.
2022-09-17(Emacs)~major change to +oreo/create-toggle-functionAryadev Chavali
Now allows numeric arguments to be passed to the buffer creation function. This is especially useful for ~eshell~ which allows creation of multiple instances using a numeric argument: very useful for managing multiple buffers. It's an optional argument but I err on the side of caution so by default I'll set it to nil if I don't want this feature.
2022-09-17(Emacs)+ivy-occur display recordAryadev Chavali
2022-09-17(Emacs)~bindings for org-mode, cc-mode, flycheckAryadev Chavali
+ bindings for flycheck-(next|prev)-error ~ bindings for org mode (now has prefix "l" for links) ~ c(++?)-mode's binding for c-(beg|end)-of-statement now set just for c(++?)-mode
2022-09-17(Emacs)~cleaning up descriptions/errorsAryadev Chavali
~ Links were misaligned ~ Descriptions ~ Titles ~ :display blocks - environment section as systemd gets path variables in .zprofile
2022-09-16(Emacs)~eshell gets some loveAryadev Chavali
I really like Eshell. Fanboy a bit about it in my configuration, and describe its true abilities. Further split up the config so it's a bit easier to read.
2022-09-16(Emacs)~config.org: "+dx/"->"+oreo/"Aryadev Chavali
Change namespace for my configurations custom functions, better representation.
2022-09-16(Emacs)~+dired/omit-dot-files: dired-omit-mode set after +dired/omit-modeAryadev Chavali
Flip ~+dired/omit-mode~'s value before toggling dired-omit-mode.
2022-09-14(Emacs)+auto-save for C/C++ to clang-format bufferAryadev Chavali
Nicer to do this and have a formatted file to commit on git than commit a non-formatted file and realise after a push.
2022-09-14(Emacs)+common lisp configurationAryadev Chavali
Using sly, make a LISP IDE in Emacs. REPL with high level integration, first class syntax highlighting and error reporting and an environment literally built out of it.
2022-09-14(Emacs)+org-link-frame-setupAryadev Chavali
Always open a new frame when opening link in org-mode: predictable, safe behaviour which leaves it up to my window manager as to what to do next. Most of my opened links are files that I want to examine along with the org file I opened them from: this allows me to do exactly that.
2022-09-14(Emacs)~minor changesAryadev Chavali
2022-09-14(Emacs)+eshell extra functionality to eshellAryadev Chavali
+ Nicer prompt which shows git information on the fly. + Cute figlet banner for start of eshell Pretty nifty!
2022-09-14(Emacs)+early-init native-compilation optionsAryadev Chavali
Set to 4 workers at the start to make compilation at least as fast as possible: my laptop has 4 cores so it'll just slow it down until early compilation is done, while my desktop can still keep going as it has 8 threads. In config.org this is setup correctly so the rest of the config (which is the much larger part) uses a system dependent number of cores.
2022-09-14(Emacs)~whitespace now shows spacesAryadev Chavali
Might be kinda useless but I think it actually makes it a bit easier to distinguish what's written in a file.
2022-09-14(Emacs)~changes to dired configurationAryadev Chavali
In order of complexity: - set (leader "dd") to ~dired~ rather than ~dired-jump~, because I think it's better to have an option to choose directory - +dired/maybe-frame -> dired-other-frame (just use another frame always) - dired-omit-mode config: - When ~dired-hide-details-mode~ is on, hide all dot(files/directories) - When ~dired-hide-details-mode~ is off, show all files (turn off ~dired-omit-mode~) - This is achieved by hooking ~+dired/omit-files~ (which does the above) to ~dired-hide-details-mode-hook~
2022-09-14(Emacs)+all-the-iconsAryadev Chavali
Allows for insertion of emojis, though ~counsel-unicode-char~ allows you to do that too 🤔
2022-09-14(Emacs)~rg binding "sr"->"sR"Aryadev Chavali
I use counsel-rg usually as it provides instant results. At the point where I'll need a compilation-like buffer of results I'll just use one of the *grep functions, which work regardless of ripgrep being installed (essentially just learn one tool, well, rather than multiple tools, badly.)
2022-09-14(Emacs)~display-line-numbers-type absolute->relativeAryadev Chavali
Relative numbers are cooler, easier to see what your program is reading in a file using relative numbers.
2022-09-14(Emacs)+feature to +olivetti-modeAryadev Chavali
Now disables mode line for extra *immersion*
2022-09-14(Emacs)+object based compilation for Makefile auto insertAryadev Chavali
Faster overall, incremental compilation.
2022-09-14(Emacs)+compile keybindingsAryadev Chavali
next-error, previous-error and recompile to make compilation easier: I can now traverse through errors and retry compiling without having to leave code buffers!
2022-09-14(Emacs)~= -> ~ code tagAryadev Chavali
2022-09-14(Emacs)+clean buffer list functionalityAryadev Chavali
Better than using ibuffer, just does it like a macro.
2022-09-14(Emacs)+dired insert all subdirectories -dired display functionsAryadev Chavali
Just a nice bit of functionality, also added bindings for stuff I've needed when using dired recently.
2022-09-14(Emacs)~clean up headings, descriptions and bits of codeAryadev Chavali
2022-09-14(Emacs)~org bindings org-ctrl-c->org-todo, insert strucutre templateAryadev Chavali
2022-09-14(Emacs)~default size of font on oldboy 125->140Aryadev Chavali
Old man eyes
2022-09-14(Emacs)+org/swiper-gotoAryadev Chavali
Better version of org-goto, use in place imenu when in org mode documents
2022-09-14(Emacs)+toggles for undo-tree-visualize and whitespace-modeAryadev Chavali
2022-09-14(Emacs)~description for calc modeAryadev Chavali
List of tools.
2022-09-14(Emacs)+ivy posframeAryadev Chavali
Last time I used this thing was 3 years ago (5c72c72) in Doom. This configuration is largely similar to that, but without whatever magic doom did for the 'childframe' module.
2022-09-14(Emacs)~reordered ivy/counsel blocks, ~better defer patternsAryadev Chavali
Set orderless ivy integration in orderless package rather than ivy for better deferral. Set counsel-grep-swiper-limit to ~1.5MB because swiper usually can handle it and I really don't like counsel-grep as I need to put in at least two characters to get a result back.
2022-09-14(Emacs)+transpose prefixAryadev Chavali
Transposing objects? Pretty cool Emacs, but I'd like it in vim.
2022-09-14(Emacs)~refactor general-def systemAryadev Chavali
Firstly use ~(general-evil-setup t)~ to create aliases for general-def that are similar to evil (nmap, vmap, etc). Define my own nmmap which combines normal and motion states. Refactor all uses into the general-evil aliases.
2022-09-14(Emacs)+org-format-latex-optionsAryadev Chavali
Provides finer control over fragment options.
2022-09-14(Emacs)~org-mode variables: todo-keywords, babel-load-languagesAryadev Chavali
-wait keyword from org-todo-keywords because it's useless +shell language capability to babel.
2022-09-14(Emacs)+org-clock-report functionalityAryadev Chavali
Provides the ability to generate a report in your file, and also an advice which (when a toggle is enabled) regenerates the top level report after clock out.
2022-09-14(Emacs)-mwim, unicode-emoticons, tuareg, +fd-dired, ~update versionsAryadev Chavali
Just remove a few useless packages and update my cached versions list.