Skip to content

Commit

Permalink
feat: init hurl.nvim plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Oct 21, 2023
1 parent fbcc14f commit f3f615a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lua/hurl.nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- @module hurl.nvim
--- Plugin entrypoint
---@return boolean
local function setup()
print('hello world')
return true
end

return {
setup = setup,
}
1 change: 1 addition & 0 deletions plugin/hurl.nvim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print('loading hurl.nvim plugin')
5 changes: 5 additions & 0 deletions test/plugin_spec.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe('Hurl.nvim plugin', function()
it('work as expect', function()
assert.is_true(true)
end)
end)

0 comments on commit f3f615a

Please sign in to comment.