summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/init.lua
diff options
context:
space:
mode:
authorChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-04-13 00:39:31 -0400
committerChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-04-13 00:39:31 -0400
commit6273b6d43aedc6b00b82e1081db14c39194da765 (patch)
treec6b1b1e6f9391696001375cb93ecd34449eefe0c /dot_config/nvim/lua/plugins/init.lua
parentnvim: add rudimentary treesitter folding support (diff)
nvim: redo the whole thing
reasons tm
Diffstat (limited to 'dot_config/nvim/lua/plugins/init.lua')
-rw-r--r--dot_config/nvim/lua/plugins/init.lua30
1 files changed, 30 insertions, 0 deletions
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'] = '<localleader>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',
+ },
+ },
+}