[nvim] Move neovim config to /nvim

This commit is contained in:
Eryn Wells 2026-01-24 15:25:05 -08:00
parent e45c1694af
commit 5b567ad2ad
28 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# lua.snippets
# vim: set ts=8 sw=8 sts=8 noet list:
# Eryn Wells <eryn@erynwells.me>
snippet pd
local pd <const> = playdate
endsnippet
snippet gfx
local gfx <const> = playdate.graphics
endsnippet
snippet sprite
class("${1:Sprite}").extends(gfx.sprite)
function $1:init()
end
function $1:update()
end
endsnippet