Skip to content
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
afccfe3
chore: init nix based setup
ar-at-localhost Apr 14, 2026
da2c0f4
feat(api): add headline clock and todo API methods
ar-at-localhost Apr 14, 2026
5985405
feat(api): add OrgFile:insert_headline method to insert headlines int…
ar-at-localhost Apr 14, 2026
ef8d0a1
Merge branch 'master' into feat/apis
ar-at-localhost Apr 14, 2026
fc40ddc
chore: commit envrc example
ar-at-localhost Apr 14, 2026
e9da9d3
Merge branch 'master' into feat/apis
ar-at-localhost Apr 18, 2026
f467e76
chore(doc): revert generated api doc changes (auto-generated on release)
ar-at-localhost May 17, 2026
1e9db36
test(api): add tests for set_todo and clock operations
ar-at-localhost May 17, 2026
27c9f07
chore(nix): migrate from devenv to flake.nix with inlined vim config
ar-at-localhost May 17, 2026
ad5dd66
feat(api): add promote/demote and headline content retrieval methods
ar-at-localhost May 17, 2026
1f270e1
chore: apply stylua formatting fixes
ar-at-localhost May 17, 2026
37ba753
fix(api): return Promise from set_todo and cancel_active_clock for co…
ar-at-localhost May 17, 2026
6414c38
refactor(api): remove OrgFile:insert_headline and tests from public API
ar-at-localhost May 17, 2026
0c8d31e
chore(nix): remove nixvim, inline dev shell into flake.nix directly
ar-at-localhost May 17, 2026
3d5784b
docs(plugins): add Orgonomics to extend orgmode section
ar-at-localhost May 17, 2026
77c6982
fix(api): fix typo in clock-out doc comment
ar-at-localhost May 17, 2026
dd16ac5
fix: remove unnecessary do action wrap
ar-at-localhost May 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .envrc.example

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need this file.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env bash

export DIRENV_WARN_TIMEOUT=20s

eval "$(devenv direnvrc)"

# `use devenv` supports the same options as the `devenv shell` command.
#
# To silence all output, use `--quiet`.
#
# Example usage: use devenv --quiet --impure --option services.postgres.enable:bool true
use devenv
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,20 @@ doc/tags

# Lock file
.org-ts-lock.json

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are mostly nix specific stuff that you can ignore in your global gitignore. Please remove them.

# Nvim files (for project scoped sessions / scratches etc --- used by `np`)
.nvim/

# Personal orgfiles (for project scoped tasks etc --- used by `np`)
orgfiles/

# Devenv
.devenv*
devenv.local.nix
devenv.local.yaml
.pre-commit-config.yaml

# direnv
.direnv
.envrc*
!.envrc.example
Loading
Loading