From 733f23d190a3ca58900eba547d89917b26f30f6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Vulquin?= Date: Tue, 6 Aug 2024 13:15:45 +0200 Subject: nvim: simplify bindings.fnl This also introduces a neovim-level `.chezmoiremove`. This will be used from now on to cleanup files. It might grow over time but I can start trimming the top lines once it's been "long enough" anyway. --- dot_config/nvim/fnl/bindings.fnl | 13 +++++++++++++ dot_config/nvim/fnl/bindings/builtins.fnl | 5 ----- dot_config/nvim/fnl/bindings/init.fnl | 13 ------------- dot_config/nvim/fnl/bindings/plugins.fnl | 4 ---- 4 files changed, 13 insertions(+), 22 deletions(-) create mode 100644 dot_config/nvim/fnl/bindings.fnl delete mode 100644 dot_config/nvim/fnl/bindings/builtins.fnl delete mode 100644 dot_config/nvim/fnl/bindings/init.fnl delete mode 100644 dot_config/nvim/fnl/bindings/plugins.fnl (limited to 'dot_config/nvim/fnl') diff --git a/dot_config/nvim/fnl/bindings.fnl b/dot_config/nvim/fnl/bindings.fnl new file mode 100644 index 0000000..04ea594 --- /dev/null +++ b/dot_config/nvim/fnl/bindings.fnl @@ -0,0 +1,13 @@ +(import-macros {:mixed-table · : recc} :toast.macros) + +(recc :which-key :add + ; document missing builtins + [(· :gt & :desc "Next tab") + (· :gT & :desc "Previous tab") + ; diagnostics + (· :e vim.diagnostic.open_float & :desc "diag float") + (· :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 + (· :f & :desc :+find)]) diff --git a/dot_config/nvim/fnl/bindings/builtins.fnl b/dot_config/nvim/fnl/bindings/builtins.fnl deleted file mode 100644 index dd96dfc..0000000 --- a/dot_config/nvim/fnl/bindings/builtins.fnl +++ /dev/null @@ -1,5 +0,0 @@ -; document missing builtins -(import-macros {:mixed-table · : recc} :toast.macros) -(recc :which-key :add - [(· :gt & :desc "Next tab") - (· :gT & :desc "Previous tab")]) diff --git a/dot_config/nvim/fnl/bindings/init.fnl b/dot_config/nvim/fnl/bindings/init.fnl deleted file mode 100644 index 80b6733..0000000 --- a/dot_config/nvim/fnl/bindings/init.fnl +++ /dev/null @@ -1,13 +0,0 @@ -(import-macros {:mixed-table · : recc} :toast.macros) - -(each [_ v (ipairs [:builtins - :plugins])] - (require (.. :bindings. v))) - -; general bindings that aren't specific to a plugin -(recc :which-key :add - ; diagnostics - [(· :e vim.diagnostic.open_float & :desc "diag float") - (· :q vim.diagnostic.setloclist & :desc "diag locations") - (· "[d" vim.diagnostic.goto_prev & :desc "prev diag") - (· "]d" vim.diagnostic.goto_next & :desc "next diag")]) diff --git a/dot_config/nvim/fnl/bindings/plugins.fnl b/dot_config/nvim/fnl/bindings/plugins.fnl deleted file mode 100644 index 97f09c7..0000000 --- a/dot_config/nvim/fnl/bindings/plugins.fnl +++ /dev/null @@ -1,4 +0,0 @@ -; plugin-specific category bindings -(import-macros {:mixed-table · : recc} :toast.macros) -(recc :which-key :add - [(· :f & :desc :+find)]) -- cgit v1.2.3