-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
77 changed files
with
3,545 additions
and
1,624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
if coand -v nix-shell &> /dev/null | ||
then | ||
use_flake | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
scripts/bin/word binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: docgen (oneday) | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
steps: | ||
- name: empty | ||
run: echo "empty" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: nix | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
steps: | ||
- name: empty | ||
run: echo "empty | ||
# - uses: actions/checkout@v3 | ||
# - run: date +%F > todays-date | ||
# - name: restore from todays cache | ||
# uses: actions/cache@v3 | ||
# with: | ||
# path: _neovim | ||
# key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: test (one day) | ||
|
||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
steps: | ||
- name: empty | ||
run: echo "empty" |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
word-toc word.txt /*word table of contents* | ||
word markdown.md /* the `.md` extension is used | ||
word-link |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
*word.lua.txt* word.lua | ||
|
||
Author: Chris Pecunies | ||
|
||
TABLE OF CONTENTS *word.lua* | ||
================================================================================ | ||
|
||
1. Introduction..........................................|word-intro| | ||
2. About.................................................|word-about| | ||
3. Todo..................................................|word-todo| | ||
4. Links.................................................|word-links| | ||
|
||
INTRODUCTION *word.lua* | ||
================================================================================ | ||
|
||
`word.lua` is a plugin to bring the extensibility of org-mode to neovim without | ||
leaving the gold standard markdown file format. | ||
|
||
INSTALLATION *word-install* | ||
================================================================================ | ||
|
||
|
||
|
||
SETUP *word-setup* | ||
================================================================================ | ||
|
||
```lua | ||
require("word").setup({ | ||
load = { | ||
base = { }, | ||
workspace = { | ||
config = { | ||
workspaces = { | ||
default = "~/word", | ||
word = "~/word" | ||
} | ||
} | ||
} | ||
|
||
} | ||
}) | ||
```` | ||
|
||
CONFIG *word-config* | ||
================================================================================ | ||
|
||
OVERVIEW *word-about* | ||
================================================================================ | ||
|
||
To be filled out | ||
|
||
KEYMAPS *word-keymaps* | ||
================================================================================ | ||
|
||
By default, the prefix is currently for major word.lua commands is mapped | ||
to `\` but may be changed by setting `vim.g.word_leaer` in your config.` | ||
|
||
---------------------------------------------------------------------------- | ||
| Mappings | Action | | ||
---------------------------------------------------------------------------- | ||
| <leader>wt | Toggle todo | | ||
| <leader>wn | Next todo | | ||
| <leader>wp | Previous todo | | ||
| <leader>wd | Delete todo | | ||
---------------------------------------------------------------------------- | ||
|
||
TODO *word-todo* | ||
================================================================================ | ||
|
||
- [ ] Separate commands and mods `(11/15 22:43)` | ||
- [ ] Docgen `(11/15 22:43)` | ||
- [ ] Easy linking of files by title, and easy colloqial hierarchy `(11/1522:43)` | ||
- [ ] Easy tagging of tracked todos, easy disparate categ. of todos | ||
|
||
LINKS *word-links* | ||
================================================================================ | ||
|
||
Grab the latest version or report a bug on GitHub: | ||
|
||
https://github.com/clpi/word.lua | ||
|
||
Or visit the website: | ||
|
||
https://word.clp.is | ||
|
||
vim:tw=80:colorcolumn=81:et:ft=help:norl: |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Oops, something went wrong.