update
This commit is contained in:
@@ -70,6 +70,19 @@
|
||||
(vim.keymap.set :n "gw" (fn [] (hop.hint_words))
|
||||
{:desc "Hop to word"})))}
|
||||
|
||||
;; LispSchool - Interactive structural editing tutorial
|
||||
;; Source: fnl/lisp-school.fnl (compiled by nfnl)
|
||||
{:name "lisp-school"
|
||||
:dir "."
|
||||
:cmd ["LispSchool" "LispSchoolNext"]
|
||||
:config (fn []
|
||||
(vim.api.nvim_create_user_command "LispSchool"
|
||||
(fn [] (let [ls (require :lisp-school)] (ls.start)))
|
||||
{:desc "Start LispSchool tutorial"})
|
||||
(vim.api.nvim_create_user_command "LispSchoolNext"
|
||||
(fn [] (let [ls (require :lisp-school)] (ls.next)))
|
||||
{:desc "Next LispSchool lesson"}))}
|
||||
|
||||
;; which-key - Shows keybinding hints
|
||||
;; lhs constant defined at top - which-key specs use index [1] for the key sequence
|
||||
{repo "folke/which-key.nvim"
|
||||
|
||||
Reference in New Issue
Block a user