summaryrefslogtreecommitdiff
path: root/dot_config/nvim/fnl/bindings.fnl
blob: 04ea594aacb10520f952f4b607ff17cc56ec3850 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(import-macros {:mixed-table · : recc} :toast.macros)

(recc :which-key :add
  ; document missing builtins
 [(· :gt & :desc "Next tab")
  (· :gT & :desc "Previous tab")
  ; diagnostics
  (· :<leader>e vim.diagnostic.open_float & :desc "diag float")
  (· :<leader>q vim.diagnostic.setloclist & :desc "diag locations")
  (· "[d"       vim.diagnostic.goto_prev  & :desc "prev diag")
  (· "]d"       vim.diagnostic.goto_next  & :desc "next diag")
  ; plugin groups
  (· :<leader>f & :desc :+find)])