-
-
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.
adding a bunch of small config/workflow changes
- Loading branch information
Showing
19 changed files
with
82 additions
and
288 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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
# These are supported funding model platforms | ||
|
||
liberapay: | ||
open_collective: # Replace with a single Open Collective username | ||
github: ["clpi"] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
patreon: | ||
|
||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
|
||
liberapay: https://opencollective.com/clp | ||
open_collective: https://opencollective.com/clp | ||
github: [clpi] | ||
ko_fi: https://ko-fi.com/clp | ||
patreon: https://patreon.com/clpi | ||
custom: ["clp.is"] |
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 |
---|---|---|
|
@@ -10,3 +10,5 @@ ext/ | |
/.luarocks | ||
.direnv | ||
.pre-commit-config.yaml | ||
/doc/tags | ||
**.book/ |
Empty file.
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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
index.md | ||
.vscode | ||
lib/ | ||
**node_modules | ||
ext/ | ||
**.ropeproject/ | ||
**notes/ | ||
/luarocks | ||
/lua_modules | ||
/.luarocks | ||
.direnv | ||
.pre-commit-config.yaml | ||
/doc/tags | ||
**.book/ |
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,12 @@ | ||
H = {} | ||
|
||
local health = vim.health | ||
local healthp = vim.provider.health | ||
local start, ok, warn, error, info = vim.health.start, vim.health.ok, vim.health.warn, vim.health.error, vim.health.info | ||
local fmt = string.format | ||
|
||
return { | ||
check = function() | ||
start("word Configuration") | ||
end | ||
} |
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
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 @@ | ||
#r/usr/bin/env lua | ||
|
||
--vim:ft=lua |
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,8 @@ | ||
#!/usr/bin/env codon run | ||
|
||
import os | ||
import sys | ||
|
||
os.system("echo 'hi there") | ||
|
||
# vim:ft=python |
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 @@ | ||
#!/usr/bin/env lua | ||
|
||
--vim:ft=lua |
Oops, something went wrong.