Org-mode reference card [pdf]
11–20 of 31 posts
Re: Org-mode reference card [pdf]
#12I would pay actual dollars for an org-mode spacemacs reference
Re: Org-mode reference card [pdf]
#13I keep trying to get into org mode, and it never gets a hold of me. Would love to hear what amazing things folks are doing with org mode that can't be achieved, e.g., with markdown.
I also use those files as a journal, tagging them and searching later is very easy and a great way to document things (for personal purposes).
Re: Org-mode reference card [pdf]
#14Re: Org-mode reference card [pdf]
#15How do you get your information out of orgmode, e.g: for sharing/collaborating with other people? I find this to be very important as I do it often in Asana.
Much of it can be converted to other forms, including PDFs or HTML.
Re: Org-mode reference card [pdf]
#16I keep trying to get into org mode, and it never gets a hold of me. Would love to hear what amazing things folks are doing with org mode that can't be achieved, e.g., with markdown.
Having the agenda view (calendar) generated, having sparse trees, having spreadsheet like tools, having precise and intuitive folding behaviour make it great.
I don't care at all about the whole org->html pipeline. Who cares. It's not very good and it isn't better than markdown. I get that if you are already in the org world it's nice, but it's not the reason to get into that world.
Re: Org-mode reference card [pdf]
#17I keep trying to get into org mode, and it never gets a hold of me. Would love to hear what amazing things folks are doing with org mode that can't be achieved, e.g., with markdown.
So, yeah, with 10 years of org-mode experience behind me, I still don't feel like it's smooth yet. I never got the hang of clocking. The lack of stable integrations to the outside world are what kill me. Yes, there's been mobile apps from mobileorg to orgzly to new ones I don't know about, but none have ever really nailed the interface. Calendar syncing is iffy, and breaks often. I still use org-mode for notes, blogs, writing, etc, and my emacs config is org-babel'd, which is a fantastic literate programming environment. I'm even working on a small package to export org-mode to gitbook format (http://github.com/qdot/org-gitbook, don't get your hopes up yet as right now it's just 2 small functions, but it does work). org-trello integration (https://org-trello.github.io/) is getting me closer to what I want, but that still means bouncing org -> trello -> other services, which isn't exactly ergonomic.
I would love if org-mode could be my full memex implementation, but there's parts that just aren't there quite yet. Since part of the package is still extremely useful to me, I'll certainly keep trying.
Re: Org-mode reference card [pdf]
#18I keep trying to get into org mode, and it never gets a hold of me. Would love to hear what amazing things folks are doing with org mode that can't be achieved, e.g., with markdown.
M-x package-install RET org RET
Step 2 add this to your .emacs files ;;;;org-mode configuration
;; Enable org-mode
(require 'org)
;; Make org-mode work with files ending in .org
;;(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
;; The above is the default in recent emacsen
;; The following lines are always needed. Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
;; set todo configuration in org-mode
(setq org-todo-keywords
'((sequence "TODO" "IN-PROGRESS" "WAITING" "|" "NTD" "DONE")))
(setq org-log-done 'time)
;; Hide leading stars
(setq org-startup-indented t
org-hide-leading-stars t)
Step 3 create a .org file c-x c-f first.org
Step 4 create your first node in your first file alt-enter
Step 5 play with your nodes ;; cycle through todo list progress: todo in-progress done etc..
shift left and right
;; promote and demote nodes
alt left and right
;; expand and colapse
tab
;; create more nodes
alt-enter
your done!!Re: Org-mode reference card [pdf]
#19Re: Org-mode reference card [pdf]
#20I keep trying to get into org mode, and it never gets a hold of me. Would love to hear what amazing things folks are doing with org mode that can't be achieved, e.g., with markdown.
That list would be never-ending, but the thing that really makes it for me is the way you can do literate programming. On the other hand, I can rarely use it because my colleagues don't use Emacs