summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-org.el (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-23rename fcuny-org to my-orgFranck Cuny1-177/+0
2022-03-22org: make flymake happyFranck Cuny1-1/+9
2022-02-03org: new capture for bookmarksFranck Cuny1-0/+21
Add a new template to capture bookmarks. The link needs to be in the clipboard, and the title of the entry uses the title of the page.
2022-02-03org: journal's tree-type is dayFranck Cuny1-1/+1
2022-02-03org: fix URL for JiraFranck Cuny1-2/+1
2022-01-31org: clean up configFranck Cuny1-15/+5
2021-12-20emacs: stop using org-superstarFranck Cuny1-5/+0
2021-10-16fcuny: remove unused org functionsFranck Cuny1-1/+0
2021-10-16org: be specific about the refile targetsFranck Cuny1-1/+3
2021-10-16emacs: replace org-bullets with org-superstarFranck Cuny1-2/+2
Apparently org-bullets is not supported anymore Signed-off-by: Franck Cuny <franck@fcuny.net>
2021-10-16org: define TODO keywords as a sequenceFranck Cuny1-1/+1
2021-10-11org: active timestamp in drawer for note/journalFranck Cuny1-2/+2
Instead of having the active timestamp in the header, we can store it in the drawer. There's not a lot of value for having this in the header, we mostly care about the creation time for the agenda.
2021-10-11org: active timestamp for journal and note entriesFranck Cuny1-2/+2
2021-10-11org: save org buffers after refillFranck Cuny1-0/+6
2021-10-11org: mostly rewrite configuration for the agendaFranck Cuny1-49/+44
For some reasons using `defvar` for the files does not work with the agenda. Rewrite the org-capture templates to specify the files instead of relying on the variable, since it's not working (at least on linux with emacs 27.2). Add a custom command for the agenda, to see what I care about for the week.
2021-10-08emacs: updates for org-configurationFranck Cuny1-0/+10
2021-10-08org: simplify templates for org-captureFranck Cuny1-69/+32
Let's not worry about synchronizing files between machines, since I want to dissociate work from personal stuff. Let's reduce the amount of files managed by org, and let's have fewer templates too.
2021-03-14org: simplify a bit the lookFranck Cuny1-4/+1
Stop using a special character for the ellipsis, and use the standard org-bullets configuration.
2021-03-14org: hide emphasis markupFranck Cuny1-0/+3
2021-02-16emacs: UI things related to org-modeFranck Cuny1-1/+8
2021-02-12emacs: some updates to org's uiFranck Cuny1-0/+7
2021-02-12org: more updates for capturesFranck Cuny1-12/+28
2021-02-12org: fix some of the capture templatesFranck Cuny1-1/+7
2021-02-12org: rewrite the capture templatesFranck Cuny1-37/+77
Start using `doct` to manage the configuration for capturing content. Try to simplify a bit.
2021-01-04emacs: rename the directoryFranck Cuny1-0/+0
2020-12-09emacs: fix issue with org-modeFranck Cuny1-1/+0
2020-06-18emacs: clean up orgFranck Cuny1-141/+43
too much configuration, too complex, which means I stop using it. Get back to the minimum.
2020-02-16org: delete the custom commands for the agendaFranck Cuny1-112/+0
I don't use them. Let's start fresh and simple with the default settings, and we can build from there.
2020-02-16org: change the number of days in the calendarFranck Cuny1-0/+2
Using the current week view is not really efficient for me. Instead, let's show the last 7 days and the next 10 days, this gives me a better idea of what I need to work on.
2020-02-16org: don't set custom facesFranck Cuny1-8/+0
The default is just fine, it's more things to manage otherwise.
2020-02-11org: path to the file to store the IDs.Franck Cuny1-0/+2
2020-02-11org: don't narrow when capturing a journal entry.Franck Cuny1-2/+2
2020-02-11org: change the default prioritiesFranck Cuny1-2/+2
Increase the number of available priorities, and set the default to C when creating a new task.
2020-02-11org: don't change the default ellipsisFranck Cuny1-1/+0
2020-02-11org: change some of the hooks.Franck Cuny1-5/+3
Let's not force the length of the lines, but instead rely on visual line mode to wrap them.
2019-12-23org: don't use orgit for now.Franck Cuny1-2/+3
The module bumped the dependency on a newer version of org-mode that does not work on my machine (I might have an older version of emacs, and I'd need to update).
2019-12-23org: files and appearance.Franck Cuny1-11/+22
Having the files defined as `defvar` did not work: a bunch of stuff were failing to load correctly. Customize the look of completed tasks, to make it more obvious that I don't need to pay attention to them.
2019-12-23org: remove unused functions.Franck Cuny1-20/+0
I don't have any need for these functions.
2019-12-09[org] put all configs related to org togetherFranck Cuny1-0/+43
Instead of having functions related to org in another file, move everything in a single file, this makes it easier to find dead code and update some functions.
2019-12-09[org] add `orgit` to my configuration.Franck Cuny1-0/+3
`orgit` allows you to link to a magit buffer in org-mode.
2019-12-09[org] Add template for meeting / interviews.Franck Cuny1-0/+8
The template for the interview was already existing, so add it back, and add a new template for meetings. By default they all go to inbox, and I will use the function to refile them to the work journal.
2019-12-09[org] Add docstring to a function.Franck Cuny1-0/+2
Add a docstring to the function to refile a subtree to the work journal.
2019-12-09[org] Clean up function to move to datetree.Franck Cuny1-1/+0
I don't use the property *TIMESTAMP_IA* so I can drop this from the code.
2019-12-09[org] The week starts on MondayFranck Cuny1-1/+2
Configure the calendar to start the week on Monday instead of Sunday.
2019-12-09[org] Add functions to refile to datetreeFranck Cuny1-14/+32
I want to be able to refile some notes to a datetree. These new functions do just that, and one of them is specific to the work journal.
2019-11-23[emacs] don't hide directories info.Franck Cuny1-82/+83
I prefer to see the details, it's easier to understand what I'm looking at.
2019-10-06[org] a lot of changes.Franck Cuny1-87/+187
Adding a menu for hydra, to jump quickly to some files. I'm also adding a few custom commands for the agenda. After that many experiment, I think this is what I'm missing to be more efficient. This allows me to ignore completely how the file *looks* and focus on getting through the tasks. I'm also adding a few keywords for managing tasks: - PROJECT is for large tasks (e.g. an epic). This can be transitioned to PROJECTDONE - MEETING and NOTES are tasks that are completed, and I use them to keep track of various things in a project.
2019-09-16[org] bigger font for title / headlinesFranck Cuny1-2/+11
2019-09-14[org] small improvements to hydra and templatesFranck Cuny1-4/+4
set the correct title of the file for org journal, and don't add the current file when creating a new entry with org-capture.
2019-08-29[org] drop all my custom templates but one.Franck Cuny1-25/+1
one template is enough to capture what ever is going on. too much choices makes it less likely i'll use it.
2019-08-29[org] major rewrite of the configFranck Cuny1-72/+110
i've used the workflow documented at http://www.howardism.org/Technical/Emacs/getting-more-boxes-done.html for the last few days and it's definitely better than anything i've tried so far. the rewrite is mostly to replicate the configuration (with some minor adjustments).
2019-08-26[org] fix template to create tasksFranck Cuny1-1/+1
2019-08-24[org] set default file for inboxFranck Cuny1-8/+5
small change to the capture template
2019-06-24[make] update path where to store screenshots.Franck Cuny1-5/+5
2019-06-10[emacs] move org to documents instead of dropboxFranck Cuny1-1/+1
2019-05-23[emacs] merged a bunch of org-files together.Franck Cuny1-19/+18
I'll rather have fewer files and rely on tagging to find what I'm looking for.
2019-05-23[emacs] enable org-babel for shell modeFranck Cuny1-0/+8
2019-05-14[emacs] update templates to rely more on inbox.Franck Cuny1-19/+14
I spend too much time thinking where something should go. Put it in the inbox and deal with it later.
2019-05-13[emacs] fontify code with org-babelFranck Cuny1-0/+1
2019-05-13[emacs] more re-work of the templates.Franck Cuny1-19/+16
I've added a new template to create projects.
2019-05-12[emacs] fix a couple templates for org.Franck Cuny1-2/+4
2019-05-12[emacs] don't export TOC and section number for org.Franck Cuny1-0/+3
2019-05-12[emacs] Fix some org-mode templatesFranck Cuny1-4/+17
2019-05-12[emacs] fix refile for org-mode with swiperFranck Cuny1-0/+7
There was an issue where swiper would only offer the name of the file to refile to, not all the headings. Fix the configuration to make this work as expected.
2019-05-12[emacs] Move org-mode notes to dropboxFranck Cuny1-1/+1
2019-05-03[emacs] org mode templatesFranck Cuny1-17/+12
2019-05-03[emacs] enable pretty entities in orgFranck Cuny1-0/+2
2019-04-30[emacs] Add a template for weekly review.Franck Cuny1-0/+8
In addition to the template, we introduce a new directory (etc) where this template will be. There's a new custom variable for the new path.
2019-04-30[emacs] Update binding for templates in org mode.Franck Cuny1-2/+2
It's a journal, not a diary, so start with j|J.
2019-04-30[emacs] Add htmlize to export to HTML.Franck Cuny1-0/+3
Looks like I need this now to start exporting buffers to HTML ?
2019-04-30[emacs] Fix the todo keywords sequence.Franck Cuny1-10/+2
First, I made a typo in the name of the variable, which is why the sequencing did not work. Secondly, let's start with something simple instead of multiple sequences.
2019-04-30[emacs] Be explicit for new lines in org-mode.Franck Cuny1-7/+5
I don't want newline when I create to do items, but when I write new entries in various docs, I want that newline. It's better to be explicit in the configuration.
2019-04-19[emacs] more work on org-mode.Franck Cuny1-25/+101
I'm adding a custom view for the agenda, in order to see tasks in order of priorities (what's urgent, important, etc). This should help me to focus and prioritize work correctly. I've also added some comments, and used the `org-directory` variable to build all the paths.
2019-04-18[emacs] add a few more templates to org-mode.Franck Cuny1-7/+28
2019-04-08[emacs] Back to using org-mode.Franck Cuny1-0/+24
I've really made a mistake when I stopped using org-mode. At the time I probably went overboard by trying to do to much with it. Now I need to rethink a workflow and how to use it efficiently for work and personal stuff.