Added fennel, hotpot, and org mode

This commit is contained in:
2026-07-13 09:25:19 +01:00
parent 0547732a7d
commit 068e0a2e40
5 changed files with 49 additions and 0 deletions
+2
View File
@@ -81,11 +81,13 @@ return {
"bash",
"c",
"elixir",
"fennel",
"html",
"lua",
"markdown",
"nix",
"nu",
"org",
"python",
"rust",
"scheme",
+14
View File
@@ -0,0 +1,14 @@
return {
{
"rktjmp/hotpot.nvim",
lazy = false,
},
{
"Olical/conjure",
ft = { "fennel", "clojure", "scheme", "lisp" },
config = function()
-- Conjure configuration
-- By default, Conjure maps local leader commands (e.g. <localleader>ee to evaluate form).
end,
},
}
+18
View File
@@ -0,0 +1,18 @@
return {
{
"nvim-orgmode/orgmode",
event = "VeryLazy",
config = function()
-- Setup orgmode
require("orgmode").setup({
org_agenda_files = "~/orgfiles/**/*",
org_default_notes_file = "~/orgfiles/refile.org",
mappings = {
prefix = "<leader>a",
},
})
-- Enable org LSP
vim.lsp.enable("org")
end,
},
}