-
-
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
82 changed files
with
822 additions
and
2,168 deletions.
There are no files selected for viewing
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,14 @@ | ||
{ | ||
description = "word.lua"; | ||
inputs = { | ||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | ||
}; | ||
|
||
outputs = { self, nixpkgs }: { | ||
|
||
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; | ||
|
||
packages.x86_64-linux.default = self.packages.x86_64-linux.hello; | ||
|
||
}; | ||
} |
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 @@ | ||
# TODO |
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 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 |
---|---|---|
@@ -1,36 +1,36 @@ | ||
*dorm.lua.txt* dorm.lua | ||
*word.lua.txt* word.lua | ||
|
||
Author: Chris Pecunies | ||
|
||
INTRODUCTION *dorm.lua* | ||
INTRODUCTION *word.lua* | ||
================================================================================ | ||
|
||
`dorm.lua` is a plugin to bring the extensibility of org-mode to neovim without | ||
`word.lua` is a plugin to bring the extensibility of org-mode to neovim without | ||
leaving the gold standard markdown file format. | ||
|
||
|
||
ABOUT *dorm-about* | ||
ABOUT *word-about* | ||
================================================================================ | ||
|
||
To be filled out | ||
|
||
TODO *dorm-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 *dorm-links* | ||
LINKS *word-links* | ||
================================================================================ | ||
|
||
Grab the latest version or report a bug on GitHub: | ||
|
||
https://github.com/clpi/dorm.lua | ||
https://github.com/clpi/word.lua | ||
|
||
Or visit the website: | ||
|
||
https://dorm.clp.is | ||
https://word.clp.is | ||
|
||
vim:tw=80:colorcolumn=81:et:ft=help:norl: |
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,6 @@ | ||
# The word | ||
|
||
- [ ] 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 |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
M = {} | ||
|
||
function M.word(ns) | ||
local hasword, v = pcall(require, "word") | ||
assert(hasword, "word is not loaded - load it before telescope") | ||
vim.api.nvim_create_namespace(ns) | ||
end | ||
|
||
return M |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.