From 6273b6d43aedc6b00b82e1081db14c39194da765 Mon Sep 17 00:00:00 2001 From: Chloe Kudryavtsev Date: Thu, 13 Apr 2023 00:39:31 -0400 Subject: nvim: redo the whole thing reasons tm --- dot_config/nvim/lua/plugins/init.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dot_config/nvim/lua/plugins/init.lua (limited to 'dot_config/nvim/lua/plugins/init.lua') diff --git a/dot_config/nvim/lua/plugins/init.lua b/dot_config/nvim/lua/plugins/init.lua new file mode 100644 index 0000000..da7c167 --- /dev/null +++ b/dot_config/nvim/lua/plugins/init.lua @@ -0,0 +1,30 @@ +-- simple stuff that doesn't need any handling +-- and doesn't fit in elsewhere +return { + { 'folke/lazy.nvim', version = false }, + 'Olical/aniseed', + { + 'Olical/conjure', + config = function(_, opts) + for k, v in pairs(opts) do + vim.g['conjure#' .. k] = v + end + end, + opts = { + ['mapping#prefix'] = 'e', + ['extract#tree_sitter#enabled'] = true, + -- disabling lua, python, rust + filetypes = { + 'clojure', + 'fennel', + 'hy', + 'janet', + 'julia', + 'lisp', + 'racket', + 'scheme', + }, + ['filetype#fennel'] = 'conjure.client.fennel.stdio', + }, + }, +} -- cgit v1.2.3