Stuffy
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1 @@
|
|||||||
out/*
|
out/*
|
||||||
.nvimrc
|
|
||||||
.spell*
|
|
||||||
|
|||||||
14
.nvim.lua
Executable file
14
.nvim.lua
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
vim.notify("Local nvim config loaded", vim.log.levels.INFO)
|
||||||
|
|
||||||
|
-------------------------------------------------------------
|
||||||
|
-- Set spell info, but only for files inside the current dir
|
||||||
|
------------------------------------------------------------
|
||||||
|
local project_root = vim.fn.getcwd()
|
||||||
|
vim.api.nvim_create_autocmd("BufEnter", {
|
||||||
|
pattern = project_root .. "/*",
|
||||||
|
callback = function()
|
||||||
|
vim.opt_local.spell = true
|
||||||
|
vim.opt_local.spelllang = "en"
|
||||||
|
vim.opt_local.spellfile = project_root .. "/.spell.add"
|
||||||
|
end,
|
||||||
|
})
|
||||||
12
.spell.add
Executable file
12
.spell.add
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
Tissemand
|
||||||
|
Garg
|
||||||
|
WYRDS
|
||||||
|
Targ
|
||||||
|
Farg
|
||||||
|
golem
|
||||||
|
Cowlbear
|
||||||
|
Gooblin
|
||||||
|
Halvbitter
|
||||||
|
Mandag
|
||||||
|
badass
|
||||||
|
Djinn
|
||||||
@@ -926,7 +926,7 @@ This chapter is not for
|
|||||||
* Map
|
* Map
|
||||||
** The world should be weird and funny, but not ridiculous.
|
** The world should be weird and funny, but not ridiculous.
|
||||||
** ShipWorld: the world, when seen from above, looks like the outline of a
|
** ShipWorld: the world, when seen from above, looks like the outline of a
|
||||||
ship, that's seen from above. But instead of being made of wooden planks,
|
ship, that's also seen from above. But instead of being made of wooden planks,
|
||||||
there is real terrain and flora. But there should/could be elevation changes
|
there is real terrain and flora. But there should/could be elevation changes
|
||||||
where the different decks (such as the Poop Deck) are.
|
where the different decks (such as the Poop Deck) are.
|
||||||
*** What's around the ship?
|
*** What's around the ship?
|
||||||
@@ -983,3 +983,5 @@ This chapter is not for
|
|||||||
** Halvbitter: more badass than Djinn
|
** Halvbitter: more badass than Djinn
|
||||||
** Gooblin
|
** Gooblin
|
||||||
** Cowlbear (a bear in a cowl?)
|
** Cowlbear (a bear in a cowl?)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user